        :root{
            --neon-red: #FF0033;    /* Intenzív neon piros */
        }
        /* --- 1. GLOBÁLIS STÍLUSOK ÉS HÁTTÉRKÉP --- */
        body {
            font-family: Arial, sans-serif;
            color: #333;
            display: flex;
            flex-direction: column; 
            align-items: center;
            min-height: 100vh;
            margin: 0;
            box-sizing: border-box;
            background-color: #f0f7ff; /* Alap háttér, ha nincs kép a többi szekcióban */
            padding-top: 70px; /* Hely a fix menünek */
        }

        .warning-banner {
            background: rgba(0, 0, 0, 0.6); /* Sötét háttér, hogy olvasható legyen a képen */
            border: 2px solid var(--neon-red);
            padding: 20px;
            border-radius: 12px;
            margin: 0 auto 30px auto; /* Fent nulla, alul 30px távolság a címtől */
            max-width: 90%; /* Mobilon ne lógjon ki */
            display: inline-block; /* Csak akkora legyen, amekkora a szöveg */
            text-align: center;
            position: relative;
            overflow: hidden;
            
            /* Neon izzás a doboz körül */
            box-shadow: 0 0 20px rgba(255, 0, 51, 0.3);
            
            /* Vészjósló pulzálás */
            animation: warning-pulse 2s infinite;
            z-index: 10;
        }

        .warning-banner p {
            color: #fff;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 1);
            font-size: 1.2rem;
            margin: 0;
            letter-spacing: 1px;
            text-transform: uppercase;
            font-weight: 700;
        }

        .warning-banner strong {
            color: var(--neon-red);
            text-shadow: 0 0 10px var(--neon-red);
            display: inline-block;
            margin-right: 10px;
        }

        /* Figyelmeztető ikon szimulálása */
        .warning-banner::before {
            content: "";
            margin-right: 15px;
            font-size: 1.4rem;
        }

        /* Pulzáló animáció kódja */
        @keyframes warning-pulse {
            0% {
                box-shadow: 0 0 15px rgba(255, 0, 51, 0.3);
                border-color: rgba(255, 0, 51, 0.6);
            }
            50% {
                box-shadow: 0 0 30px rgba(255, 0, 51, 0.6);
                border-color: rgba(255, 0, 51, 1);
                transform: scale(1.01);
            }
            100% {
                box-shadow: 0 0 15px rgba(255, 0, 51, 0.3);
                border-color: rgba(255, 0, 51, 0.6);
            }
        }

        /* --- ÚJ: Forgó Színes Keretes Akciós Doboz --- */
        .promo-banner {
            position: relative; /* Kell a pseudo-elementek pozicionálásához */
            margin: 20px auto;
            max-width: 700px;
            border-radius: 12px;
            overflow: hidden; /* Elrejti a mögötte forgó téglalap sarkait */
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;            
            /* A DOBOZ BELSEJE: Enyhén sötétített, átlátszó háttér, hogy látszódjon a háttérkép, de a szöveg olvasható legyen */
            background: rgba(0, 0, 0, 0.6);          
            color: white;
            padding: 18px 25px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4); /* Mélységet ad a doboznak */
            z-index: 1; /* A belső tartalom a keret felett maradjon */
        }

        /* A FORGÓ SZÍNES GRADIENS (a keret alapja) */
        .promo-banner::before {
            content: '';
            position: absolute;
            z-index: -2; /* Minden mögé */
            left: -50%; /* Sokkal nagyobb legyen a téglalap, mint a doboz */
            top: -50%;
            width: 200%; /* Hogy forgás közben se legyen üres rész */
            height: 200%;
            background-color: transparent; /* Alapból átlátszó */         
            animation: rotate-border 4s linear infinite; /* ANIMÁCIÓ: Forgasd körbe-körbe */            
        }

        /* --- KÜLÖNLEGES ÜNNEPI SZÍNEK --- */

        /* Alap akció szín */
        .promo-origin::before {
            background-image: conic-gradient(#ff9800, #f44336, #ff9800);
        }

        /* Black Friday (Arany) */
        .promo-black-friday::before {
            background-image: conic-gradient(#b8860b, #ffd700, #ff8c00, #ffd700, #b8860b);
        }

        /* Karácsony (Piros-Zöld) */
        .promo-christmas::before {
            background-image: conic-gradient(#cc0000, #ffffff, #006600, #ffffff, #cc0000);
        }

        /* Húsvét - Pasztell tavaszi színek */
        .promo-easter::before {
            background-image: conic-gradient(#fffacd, #98fb98, #87cefa, #98fb98, #fffacd);
        }

        /* A BELSŐ TAKARÁS (hogy csak a széle látszódjon) */
        .promo-banner::after {
            content: '';
            position: absolute;
            z-index: -1; /* A szöveg mögött, de a forgó keret előtt */
            left: 4px; /* A keret vastagsága (növelheted 6px-re, ha vastagabbat akarsz) */
            top: 4px;
            width: calc(100% - 8px); /* 100% - (2 * bal oldali rés) */
            height: calc(100% - 8px);            
            /* Ugyanaz az átlátszó sötét háttér, mint a doboznak */
            background: rgba(0, 0, 0, 0.7); 
            border-radius: 10px; /* Egy picivel kisebb sugár, mint a külső dobozé */
        }

        /* A szöveg stílusa marad */
        .promo-icon {
            font-size: 1.8rem;
            position: relative; /* Biztosítja, hogy felül legyen */
            z-index: 2;
        }

        .promo-text {
            font-weight: 700;
            font-size: 1rem;
            text-align: center;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            position: relative; /* Biztosítja, hogy felül legyen */
            z-index: 2;
        }

        /* ANIMÁCIÓ DEFINÍCIÓ: A forgás */
        @keyframes rotate-border {
            100% {
                transform: rotate(1turn); /* Egy teljes fordulat (360 fok) */
            }
        }

        /* Mobilos igazítás */
        @media (max-width: 600px) {
            .promo-banner {
                flex-direction: column;
                margin: 15px;
                padding: 12px;
            }
        }

        /* --- 2. FEJLÉC ÉS RESZPONZÍV MENÜ (EZ MARAD) --- */
        .main-header {
            background-color: rgba(0, 51, 102, 0.9); /* Sötétkék, áttetsző */
            color: white;
            padding: 15px 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: fixed; 
            top: 0;
            left: 0;
            width: 100%;
            box-sizing: border-box;
            z-index: 1000;
        }

        .logo {
            font-size: 1.5em;
            font-weight: bold;
            color: white;
            text-decoration: none;
            display: flex;
            align-items: center;
        }

        .logo:hover {
            color: #f0f0f0; /* Kicsit világosabb fehér */
        }

        .main-menu ul {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex; 
        }

        .main-menu li a {
            color: white;
            text-decoration: none;
            padding: 10px 15px;
            display: block;
            transition: background-color 0.3s;
        }

        .main-menu li a:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }
        
        .menu-toggle {
            display: none; 
            background: none;
            border: none;
            color: white;
            font-size: 2em;
            cursor: pointer;
        }

        /* --- 3. HERO SZEKCIÓ (ÚJ!) --- */
        .hero-section {
            background-image: url('../img/urlapHatter.png');
            background-size: cover;          
            background-position: center center;
            background-repeat: no-repeat;
            background-attachment: fixed;    
            color: white;
            text-align: center;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            min-height: calc(100vh - 70px); /* A menü magasságát levonjuk */
            width: 100%;
            padding: 20px;
            box-sizing: border-box;                      
        }

        .hero-content {
            background-color: rgba(0, 0, 0, 0.5); /* Áttetsző sötét háttér a szövegnek */
            padding: 30px;
            border-radius: 10px;
            max-width: 800px;
        }

        .hero-section h1 {
            font-size: 3em;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
        }

        .hero-section p {
            font-size: 1.2em;
            margin-bottom: 30px;
        }

        .order-button {
            background-color: #28a745; /* Zöld gomb */
            color: white;
            padding: 15px 30px;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            font-size: 1.3em;
            text-decoration: none; /* Linkként viselkedik */
            transition: background-color 0.3s;
        }

        .order-button:hover {
            background-color: #218838;
        }        

        /* --- 4. SZERVIZ MŰKÖDÉS (ÚJ!) --- */
        .how-it-works-section {
            width: 100%;
            max-width: 1000px;
            padding: 40px 20px;
            text-align: center;
            background-color: #fff;
            margin-top: 20px;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        .how-it-works-section h2 {
            font-size: 2.5em;
            color: #003366;
            margin-bottom: 30px;
        }

        .steps-container {
            display: flex;
            flex-wrap: wrap; /* Tördelje sorba kisebb kijelzőkön */
            justify-content: center;
            gap: 20px;
        }

        .step {
            flex: 1 1 300px; /* Rugalmas szélesség, min 300px */
            background-color: #e6f2ff; /* Világoskék háttér */
            padding: 25px;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            text-align: left;
            transition: transform 0.3s ease;
        }

        .step:hover {
            transform: translateY(-5px);
        }

        .step h3 {
            color: #0055a4;
            font-size: 1.5em;
            margin-bottom: 10px;
        }

        .step p {
            color: #555;
            line-height: 1.6;
        }

        /* --- 5. RÓLUNK SZEKCIÓ (ÚJ!) --- */
        .about-us-section {
            width: 100%;
            max-width: 1000px;
            padding: 40px 20px;
            text-align: center;
            background-color: #f8f8f8;
            margin-top: 20px;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }
       
        .about-us-section h2 {
            font-size: 2.5em;
            color: #003366;
            margin-bottom: 30px;
        }

        .about-us-section p {
            color: #444;
            line-height: 1.8;
            max-width: 700px;
            margin: 0 auto 20px auto;
            line-height: 1.6;
            text-align: justify;
            hyphens: auto;
        }

        /* ... (A Rólunk szekció stílusai után) ... */

        /* --- 6. KAPCSOLAT SZEKCIÓ (ÚJ!) --- */
        .contact-section {
            width: 100%;
            max-width: 1000px;
            padding: 40px 20px;
            text-align: center;
            background-color: #e6f2ff; /* Világoskék, eltérő háttér */
            margin-top: 20px;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        .contact-section h2 {
            font-size: 2.5em;
            color: #003366;
            margin-bottom: 30px;
        }

        .contact-info {
            text-align: left;
            max-width: 500px;
            margin: 0 auto;
            font-size: 1.1em;
            line-height: 1.8;
        }

        .contact-info a {
            color: #0055a4;
            text-decoration: none;
        }

        .contact-info a:hover {
            text-decoration: underline;
        }


        /* --- 6. LÁBLÉC STÍLUSOK (FRISSÍTVE) --- */
        
        .main-footer {
            background-color: #333; 
            color: white;
            padding: 60px 20px 0 20px;
            border-top: 1px solid #1a1a1a;
            width: 100%;
            box-sizing: border-box;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin: 0 auto 50px auto;
            max-width: 1200px;
        }

        .footer-about {
            text-align: center;
        }

        .footer-about p {
            color: #ccc;
            line-height: 1.6;
        }

        .footer-about img{
            text-align: center;
        }

        .footer-contact h3, 
        .footer-links h3,
        .footer-about h3 {
            color: #8cffff;
            font-size: 1.2rem;
            margin-bottom: 25px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .footer-contact ul, 
        .footer-links ul {
            list-style: none;
            padding: 0;
        }

        .footer-contact ul li {
            margin-bottom: 15px;
            color: #ccc;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .footer-contact a, 
        .footer-links a {
            color: #ccc;
            text-decoration: none;
            transition: 0.3s;
        }

        .footer-contact a:hover, 
        .footer-links a:hover {
            color: #8cffff;
            padding-left: 5px; /* Kis mozgás effekt */
        }

        .footer-bottom {
            border-top: 1px solid #1a1a1a;
            padding: 25px 0;
            text-align: center;
            font-size: 0.85rem;
            color: #fff;
        }

        /* Mobilos igazítás */
        @media (max-width: 768px) {
            .footer-grid {
                text-align: center;
            }
            .footer-contact ul li {
                justify-content: center;
            }
        }

        /* --- TABLET ÁLLÓ MÓD JAVÍTÁS (769px - 1024px) --- */
        @media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
            .hero-section {
                background-attachment: scroll !important; /* Letiltjuk a fixálást, ami a zoomot okozza */
                background-size: cover !important;
                background-position: 40% center !important; /* Hogy a robot látsszon */
                min-height: 70vh !important;
            }

            .hero-content {
                max-width: 85%; /* Hogy ne érjen ki a széléig a szövegdoboz */
            }
        }

        /* Opcionális: Ha nagyon magas a tableted (pl. iPad Pro), 
        ezzel a sorral biztosíthatod, hogy ne nyúljon túl nagyra a kép */
        @media (orientation: portrait) {
            .hero-section {
                background-size: cover;
            }
        }
        
        
        /* ---  RESZPONZÍV LOGIKA (MOBIL NÉZET ) --- */
        @media (max-width: 768px) {
            .menu-toggle { display: block; }
            .main-menu { 
                display: none; 
                flex-direction: column;
                width: 100%;
                position: absolute;
                top: 60px; 
                left: 0;
                background-color: rgba(0, 51, 102, 0.98); 
                box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
            }
            .main-menu.is-open { display: flex; }
            .main-menu ul { flex-direction: column; }
            .main-menu li a { border-top: 1px solid rgba(255, 255, 255, 0.1); }
            
            .hero-section {         
                /* Itt hivatkozunk az ÚJ, álló formátumú képre */
                background-image: url('../img/hatterMobil.png'); 
                
                background-attachment: scroll; /* Mobilon a fixed háttér gyakran ugrál vagy zoomol, a scroll stabilabb */
                background-size: cover;        /* Kitölti a képernyőt */
                background-position: center center; /* Mivel álló a kép, a közepe pont jó lesz */
                
                /* Megemeljük a magasságot, hogy az álló kép érvényesüljön */
                min-height: 85vh; 
                display: flex;
                justify-content: center;/* A szövegdobozt picit feljebb toljuk, hogy ne takarja az autót alul */
                align-items: center;
                padding-top: 40px;
            }

            .hero-content {
                padding: 20px;
                margin: 0 50px;
                background-color: rgba(0, 0, 0, 0.7); /* Erősebb kontraszt a szövegnek */
                border-radius: 12px;
                width: 90%; /* Kitölti a szélességet */
            }

            .hero-section h1 { font-size: 1.6em; }
            .hero-section p { font-size: 0.95em; margin-bottom: 20px; }
            .order-button { padding: 14px 20px; font-size: 1.1em; width: 100%; box-sizing: border-box; }
            
            .steps-container { flex-direction: column; }
            .step { flex: 1 1 100%; }
        }

        /* --- SPECIÁLIS: HA ELFORGATJUK A MOBILT (FEKVŐ NÉZET) --- */
        @media (max-width: 900px) and (orientation: landscape) {
            .hero-section {
                /* Visszaváltunk a fekvő képre, mert az álló kép ilyenkor használhatatlan */
                background-image: url('../img/urlapHatter.png') !important;
                background-size: cover;
                background-position: center 20%; /* Picit feljebb toljuk, hogy a robot feje ne vágódjon le */
                min-height: 120vh; /* Megemeljük, hogy legyen hely görgetni a szöveg alatt */
            }
            
            .hero-content {
                margin-top: 20px;
                max-width: 70%; /* Ne terüljön szét az egész képernyőn fekve */
            }
        }

        /* KICSI MOBIL (Pl. iPhone SE) */
        @media (max-width: 480px) {
            .hero-section {
                min-height: 90vh; /* Itt még magasabb, hogy a teljes álló grafika beleférjen */
                background-position: center top; /* Ha az autó nagyon alul van, picit feljebb húzzuk a hátteret */
            }
}