* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        :root {
            --primary: #FF6B6B;
            --secondary: #4ECDC4;
            --accent: #FFE66D;
            --dark: #1A535C;
            --light: #F7FFF7;
            --gray: #95A5A6;
            --purple: #9B59B6;
        }
        
        body {
            font-family: 'Arial', sans-serif;
            background-color: var(--light);
            color: var(--dark);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header Styles */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(26, 83, 92, 0.95);
            color: var(--light);
            z-index: 1000;
            padding: 15px 0;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            backdrop-filter: blur(10px);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 28px;
            font-weight: bold;
            color: var(--light);
            text-decoration: none;
            letter-spacing: 2px;
            text-transform: uppercase;
            font-family: 'Arial Black', sans-serif;
            position: relative;
            background: linear-gradient(90deg, var(--accent), var(--secondary));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        
        .nav {
            display: flex;
            list-style: none;
        }
        
        .nav li {
            margin-left: 25px;
            position: relative;
        }
        
        .nav a {
            color: var(--light);
            text-decoration: none;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 14px;
            transition: all 0.3s;
            padding: 5px 0;
        }
        
        .nav a::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--accent);
            transition: width 0.3s;
        }
        
        .nav a:hover {
            color: var(--accent);
        }
        
        .nav a:hover::before {
            width: 100%;
        }
        
        .burger {
            display: none;
            cursor: pointer;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            width: 30px;
            height: 30px;
        }
        
        .burger span {
            display: block;
            width: 25px;
            height: 3px;
            background-color: var(--light);
            margin: 3px 0;
            transition: all 0.3s;
        }
        
        /* Hero Section */
        .hero {
            padding: 120px 0 60px;
            background: linear-gradient(135deg, var(--dark), var(--purple));
            color: var(--light);
            text-align: center;
            position: relative;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSgyNTUsIDI1NSwgMjU1LCAwLjA1KSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNwYXR0ZXJuKSIvPjwvc3ZnPg==');
            opacity: 0.2;
            z-index: 1;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
        }
        
        .hero h1 {
            font-size: 42px;
            margin-bottom: 20px;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 2px;
            position: relative;
            display: inline-block;
            background: linear-gradient(90deg, var(--accent), var(--secondary));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        
        /* Privacy Content */
        .privacy-content {
            max-width: 800px;
            margin: 0 auto;
            padding: 60px 0;
        }
        
        .privacy-content h2 {
            font-size: 28px;
            margin: 30px 0 15px;
            color: var(--dark);
            text-transform: uppercase;
            font-weight: 700;
            letter-spacing: 1px;
        }
        
        .privacy-content h3 {
            font-size: 22px;
            margin: 25px 0 10px;
            color: var(--dark);
            text-transform: uppercase;
            font-weight: 600;
            letter-spacing: 1px;
        }
        
        .privacy-content p {
            margin-bottom: 15px;
            line-height: 1.8;
        }
        
        .privacy-content ul {
            margin-left: 20px;
            margin-bottom: 15px;
        }
        
        .privacy-content li {
            margin-bottom: 10px;
        }
        
        /* Footer Styles */
        .footer {
            padding: 50px 0 20px;
            background: linear-gradient(135deg, var(--dark), var(--purple));
            color: var(--light);
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        
        .footer-column h3 {
            font-size: 20px;
            margin-bottom: 20px;
            color: var(--accent);
            position: relative;
            padding-bottom: 10px;
            text-transform: uppercase;
            font-weight: 700;
            letter-spacing: 1px;
        }
        
        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background-color: var(--primary);
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column li {
            margin-bottom: 10px;
        }
        
        .footer-column a {
            color: var(--light);
            text-decoration: none;
            transition: color 0.3s;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .footer-column a:hover {
            color: var(--accent);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            font-size: 14px;
            color: rgba(255, 255, 255, 0.7);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        /* Cookie Banner */
        .cookie-banner {
            position: fixed;
            bottom: 20px;
            left: 20px;
            right: 20px;
            background: linear-gradient(135deg, var(--dark), var(--purple));
            color: var(--light);
            padding: 20px;
            border-radius: 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1001;
            transform: translateY(150%);
            transition: transform 0.5s;
        }
        
        .cookie-banner.show {
            transform: translateY(0);
        }
        
        .cookie-text {
            flex: 1;
            margin-right: 20px;
            font-size: 14px;
            line-height: 1.4;
        }
        
        .cookie-buttons {
            display: flex;
            gap: 10px;
        }
        
        .cookie-btn {
            padding: 10px 20px;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 12px;
        }
        
        .cookie-accept {
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            color: var(--light);
        }
        
        .cookie-accept:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        }
        
        .cookie-decline {
            background-color: transparent;
            color: var(--light);
            border: 1px solid var(--light);
        }
        
        .cookie-decline:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }
        
        /* Responsive Styles */
        @media (max-width: 768px) {
            .nav {
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                background: linear-gradient(135deg, var(--dark), var(--purple));
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
                transform: translateY(-150%);
                transition: transform 0.3s;
                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            }
            
            .nav.show {
                transform: translateY(0);
            }
            
            .nav li {
                margin: 10px 0;
            }
            
            .burger {
                display: flex;
            }
            
            .hero h1 {
                font-size: 32px;
            }
            
            .cookie-banner {
                flex-direction: column;
                text-align: center;
            }
            
            .cookie-text {
                margin-right: 0;
                margin-bottom: 20px;
            }
        }

