 
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        
        :root {
            --kolor-glowny: #f47d4a;
            --kolor-dodatkowy: #e1315b;
            --kolor-akcent: #ffec5c;
            --kolor-niebieski: #008dcb;
            --kolor-bialy: #ffffff;
            --kolor-ciemny: #1a1a1a;
            --kolor-szary: #666666;
            --gradient-zloty: linear-gradient(135deg, #ffec5c, #f47d4a);
            --gradient-glowny: linear-gradient(135deg, #f47d4a, #e1315b);
            --gradient-niebieski: linear-gradient(135deg, #008dcb, #0056b3);
        }

        
        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: var(--kolor-ciemny);
            background-color: var(--kolor-bialy);
            overflow-x: hidden;
        }

        
        .pojemnik-strony {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 30px;
        }

        .blok-sekcji {
            padding: 120px 0;
            position: relative;
        }

        .blok-sekcji--ciemny {
            background: linear-gradient(135deg, var(--kolor-ciemny) 0%, #2d2d2d 100%);
            color: var(--kolor-bialy);
        }

        .blok-sekcji--jasny {
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
        }

        .blok-sekcji--kolorowy {
            background: var(--gradient-niebieski);
            color: var(--kolor-bialy);
        }

        .naglowek-bloku {
            font-size: 3.5rem;
            text-align: center;
            margin-bottom: 80px;
            position: relative;
            font-weight: 700;
        }

        .naglowek-bloku::before {
            content: '';
            position: absolute;
            bottom: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: var(--gradient-zloty);
            border-radius: 2px;
        }

        .naglowek-bloku--jasny {
            color: var(--kolor-dodatkowy);
        }

        .naglowek-bloku--bialy {
            color: var(--kolor-bialy);
        }

        
        .pasek-nawigacyjny {
            width: 100%;
            top: 0;
            z-index: 1000;
            padding: 20px 0;
            background: transparent;
            transition: all 0.3s ease;
        }

        .pasek-nawigacyjny--przewiniety {
            background: rgba(26, 26, 26, 0.95);
            backdrop-filter: blur(10px);
            padding: 15px 0;
        }

        .kontener-nawigacji {
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
        }

        .branding-logo {
            font-size: 2.5rem;
            font-weight: 900;
            background: var(--gradient-zloty);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 2px;
            position: relative;
        }

        .branding-logo::after {
            content: '♠ ♥ ♦ ♣';
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            font-size: 0.6rem;
            letter-spacing: 4px;
            color: var(--kolor-akcent);
        }

        .lista-nawigacyjna {
            position: absolute;
            right: 0;
            display: flex;
            list-style: none;
        }

        .element-nawigacji {
            margin-left: 40px;
        }

        .odniesienie-nawigacji {
            color: var(--kolor-bialy);
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            position: relative;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .odniesienie-nawigacji::before {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gradient-zloty);
            transition: width 0.3s ease;
        }

        .odniesienie-nawigacji:hover::before {
            width: 100%;
        }

        .odniesienie-nawigacji:hover {
            color: var(--kolor-akcent);
        }

        
        .sekcja-bohaterska {
            height: 100vh;
            background: linear-gradient(135deg, 
                rgba(26, 26, 26, 0.8) 0%, 
                rgba(225, 49, 91, 0.8) 50%, 
                rgba(244, 125, 74, 0.8) 100%),
                url('./assets/img1.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--kolor-bialy);
            position: relative;
            overflow: hidden;
        }

        .sekcja-bohaterska::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(ellipse at center, transparent 0%, rgba(0,0,0,0.4) 100%);
        }

        .zawartosc-bohaterska {
            position: relative;
            z-index: 2;
            max-width: 800px;
        }

        .tytul-bohaterski {
            font-size: 4.5rem;
            margin-bottom: 30px;
            text-shadow: 3px 3px 10px rgba(0,0,0,0.5);
            font-weight: 900;
            line-height: 1.2;
            background: var(--gradient-zloty);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            text-transform: uppercase;
            letter-spacing: 3px;
        }

        .podtytul-bohaterski {
            font-size: 1.5rem;
            margin-bottom: 50px;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
            font-weight: 300;
            letter-spacing: 1px;
        }

        .guzik-akcji {
            background: var(--gradient-zloty);
            color: var(--kolor-ciemny);
            padding: 18px 50px;
            border: none;
            border-radius: 50px;
            font-size: 1.2rem;
            font-weight: 700;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
            transition: all 0.4s ease;
            text-transform: uppercase;
            letter-spacing: 2px;
            position: relative;
            overflow: hidden;
        }

        .guzik-akcji::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: left 0.5s ease;
        }

        .guzik-akcji:hover::before {
            left: 100%;
        }

        .guzik-akcji:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(255, 236, 92, 0.4);
        }

        
        .siatka-o-firmie {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .tekst-o-firmie {
            font-size: 1.2rem;
            line-height: 2;
            color: var(--kolor-szary);
        }

        .tekst-o-firmie p {
            margin-bottom: 25px;
            padding: 20px;
            background: rgba(244, 125, 74, 0.05);
            border-left: 4px solid var(--kolor-glowny);
            border-radius: 8px;
        }

        .kontener-obrazu {
            position: relative;
        }

        .obraz-o-firmie {
            width: 100%;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(244, 125, 74, 0.3);
            transition: transform 0.3s ease;
        }

        .kontener-obrazu:hover .obraz-o-firmie {
            transform: scale(1.05);
        }

        .kontener-obrazu::before {
            content: '';
            position: absolute;
            top: -20px;
            left: -20px;
            right: 20px;
            bottom: 20px;
            background: var(--gradient-glowny);
            border-radius: 20px;
            z-index: -1;
        }

        
        .siatka-oferty {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
        }

        .karta-oferty {
            background: var(--kolor-bialy);
            padding: 50px 40px;
            border-radius: 25px;
            text-align: center;
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
            border: 2px solid transparent;
        }

        .karta-oferty::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--gradient-glowny);
            z-index: -2;
            border-radius: 25px;
        }

        .karta-oferty::after {
            content: '';
            position: absolute;
            top: 2px;
            left: 2px;
            right: 2px;
            bottom: 2px;
            background: var(--kolor-bialy);
            z-index: -1;
            border-radius: 23px;
            transition: all 0.4s ease;
        }

        .karta-oferty:hover {
            transform: translateY(-15px) rotateY(5deg);
            box-shadow: 0 25px 80px rgba(244, 125, 74, 0.4);
        }

        .karta-oferty:hover::after {
            background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
        }

        .ikona-oferty {
            width: 100px;
            height: 100px;
            background: var(--gradient-zloty);
            border-radius: 50%;
            margin: 0 auto 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            position: relative;
        }

        .ikona-oferty::before {
            content: '';
            position: absolute;
            top: -5px;
            left: -5px;
            right: -5px;
            bottom: -5px;
            background: var(--gradient-glowny);
            border-radius: 50%;
            z-index: -1;
        }

        .tytul-oferty {
            font-size: 1.8rem;
            color: var(--kolor-dodatkowy);
            margin-bottom: 20px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .opis-oferty {
            color: var(--kolor-szary);
            line-height: 1.8;
            font-size: 1.1rem;
        }

        
        .siatka-galerii {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }

        .element-galerii {
            position: relative;
            overflow: hidden;
            border-radius: 25px;
            height: 350px;
            transition: all 0.4s ease;
        }

        .element-galerii::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--gradient-glowny);
            z-index: 1;
            opacity: 0;
            transition: all 0.4s ease;
        }

        .element-galerii:hover::before {
            opacity: 0.8;
        }

        .obraz-galerii {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.4s ease;
        }

        .element-galerii:hover .obraz-galerii {
            transform: scale(1.2);
        }

        .element-galerii:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(0, 141, 203, 0.3);
        }

        
        .sekcja-kontaktowa {
            background: linear-gradient(135deg, 
                var(--kolor-ciemny) 0%, 
                #2d2d2d  50%, 
                var(--kolor-ciemny) 100%);
        }

        .panel-kontaktowy {
            background: linear-gradient(135deg, var(--kolor-niebieski), #0056b3);
            padding: 60px;
            border-radius: 30px;
            margin-bottom: 60px;
            position: relative;
            overflow: hidden;
        }

        .panel-kontaktowy::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,236,92,0.1) 0%, transparent 70%);
            transform: rotate(45deg);
        }

        .tytul-kontaktu {
            font-size: 2rem;
            margin-bottom: 40px;
            color: var(--kolor-akcent);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .pozycja-kontaktu {
            margin-bottom: 25px;
            font-size: 1.2rem;
            display: flex;
            align-items: center;
        }

        .pozycja-kontaktu::before {
            content: '♦';
            margin-right: 15px;
            color: var(--kolor-akcent);
            font-size: 1.5rem;
        }

        .formularz-vip {
            max-width: 700px;
            margin: 0 auto;
        }

        .pole-formularza {
            margin-bottom: 30px;
            position: relative;
        }

        .etykieta-pola {
            display: block;
            margin-bottom: 10px;
            font-weight: 700;
            color: var(--kolor-akcent);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .pole-wprowadzania {
            width: 100%;
            padding: 20px;
            border: 2px solid rgba(255, 236, 92, 0.3);
            border-radius: 15px;
            font-size: 1.1rem;
            background: rgba(255, 255, 255, 0.1);
            color: var(--kolor-bialy);
            transition: all 0.3s ease;
        }

        .pole-wprowadzania:focus {
            outline: none;
            border-color: var(--kolor-akcent);
            background: rgba(255, 255, 255, 0.2);
            box-shadow: 0 0 20px rgba(255, 236, 92, 0.3);
        }

        .pole-wprowadzania::placeholder {
            color: rgba(255, 255, 255, 0.6);
        }

        .obszar-tekstu {
            min-height: 150px;
            resize: vertical;
        }

        .guzik-wyslania {
            background: var(--gradient-zloty);
            color: var(--kolor-ciemny);
            padding: 20px 60px;
            border: none;
            border-radius: 50px;
            font-size: 1.2rem;
            font-weight: 700;
            cursor: pointer;
            width: 100%;
            transition: all 0.4s ease;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .guzik-wyslania:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(255, 236, 92, 0.4);
        }

        
        .powiadomienie-vip {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: var(--gradient-zloty);
            color: var(--kolor-ciemny);
            padding: 30px 50px;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.4);
            display: none;
            z-index: 3000;
            font-weight: 700;
            text-align: center;
            font-size: 1.1rem;
        }

        .powiadomienie-vip--aktywne {
            display: block;
        }

        
        .sekcja-ostrzezenia {
            background: var(--gradient-glowny);
            color: var(--kolor-bialy);
            text-align: center;
            padding: 80px 0;
            position: relative;
        }

        .sekcja-ostrzezenia::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="diamonds" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><polygon points="10,2 18,10 10,18 2,10" fill="rgba(255,236,92,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23diamonds)"/></svg>');
            opacity: 0.3;
        }

        .naglowek-ostrzezenia {
            font-size: 2.5rem;
            font-weight: 900;
            margin-bottom: 30px;
            color: var(--kolor-akcent);
            text-transform: uppercase;
            letter-spacing: 3px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .tekst-ostrzezenia {
            font-size: 1.1rem;
            line-height: 1.8;
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
            background: rgba(0,0,0,0.2);
            padding: 40px;
            border-radius: 20px;
            border: 2px solid rgba(255, 236, 92, 0.3);
        }

        
        .stopka-glowna {
            background: var(--kolor-ciemny);
            color: var(--kolor-bialy);
            padding: 60px 0;
            text-align: center;
            position: relative;
        }

        .stopka-glowna::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-zloty);
        }

        .menu-stopki {
            list-style: none;
            display: flex;
            justify-content: center;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }

        .pozycja-stopki {
            margin: 0 30px 20px;
        }

        .link-stopki {
            color: var(--kolor-bialy);
            text-decoration: none;
            transition: all 0.3s ease;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
        }

        .link-stopki::before {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gradient-zloty);
            transition: width 0.3s ease;
        }

        .link-stopki:hover::before {
            width: 100%;
        }

        .link-stopki:hover {
            color: var(--kolor-akcent);
        }

        .tekst-copyright {
            color: rgba(255, 255, 255, 0.7);
            font-size: 1rem;
        }

        
        @media (max-width: 1200px) {
            .lista-nawigacyjna {
                position: static;
                margin-top: 20px;
            }
            
            .kontener-nawigacji {
                flex-direction: column;
            }
        }

        @media (max-width: 768px) {
            .siatka-o-firmie,
            .siatka-galerii {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .siatka-oferty {
                grid-template-columns: 1fr;
            }
            
            .tytul-bohaterski {
                font-size: 2rem;
            }
            
            .naglowek-bloku {
                font-size: 2.5rem;
            }
            
            .lista-nawigacyjna {
                display: none;
            }
            
            .menu-stopki {
                flex-direction: column;
                align-items: center;
            }
            
            .blok-sekcji {
                padding: 80px 0;
            }
            .branding-logo {
                font-size: 1rem;
            }
            .panel-kontaktowy{
                display: none;
            }
        }
        

        
        html {
            scroll-behavior: smooth;
        }

        
        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }

        .element-galerii:nth-child(odd) {
            animation: float 6s ease-in-out infinite;
        }

        .element-galerii:nth-child(even) {
            animation: float 6s ease-in-out infinite reverse;
        }
        
.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 15px;
    border-radius: 5px;
    display: none;
    z-index: 9999;
    max-width: 400px;
    width: 100%;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

.cookie-popup-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookie-button {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
}

.cookie-button:hover {
    background-color: #45a049;
}
