* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #F5E6D3;
            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(10, 10, 50, 0.95);
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        
        .logo {
            font-size: 28px;
            font-weight: bold;
            color: #FFD700;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
        }
        
        .nav ul {
            display: flex;
            list-style: none;
        }
        
        .nav ul li {
            margin-left: 25px;
        }
        
        .nav ul li a {
            color: #F5E6D3;
            text-decoration: none;
            font-size: 16px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .nav ul li a:hover {
            color: #FFD700;
        }
        
        .nav ul li a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #FFD700;
            transition: width 0.3s ease;
        }
        
        .nav ul li a:hover::after {
            width: 100%;
        }
        
        .burger-menu {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }
        
        .burger-menu span {
            width: 25px;
            height: 3px;
            background-color: #F5E6D3;
            margin: 3px 0;
            transition: 0.3s;
        }
        
        /* Hero section */
        .hero {
            height: 50vh;
            background: linear-gradient(rgba(10, 10, 50, 0.7), rgba(10, 10, 50, 0.7)), url('../img/23.webp');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: #F5E6D3;
            position: relative;
            overflow: hidden;
        }
        
        .hero-content {
            max-width: 800px;
            padding: 0 20px;
            animation: fadeInUp 1s ease;
        }
        
        .hero h1 {
            font-size: 48px;
            margin-bottom: 20px;
            color: #FFD700;
            text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
            letter-spacing: 3px;
        }
        
        .hero p {
            font-size: 22px;
            margin-bottom: 30px;
            line-height: 1.8;
        }
        
        /* Cookie content */
        .cookie-content {
            background-color: #fff;
            padding: 80px 0;
        }
        
        .cookie-text {
            max-width: 900px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .cookie-text h2 {
            font-size: 32px;
            color: #0D47A1;
            margin: 40px 0 20px;
        }
        
        .cookie-text h3 {
            font-size: 24px;
            color: #4A148C;
            margin: 30px 0 15px;
        }
        
        .cookie-text p {
            margin-bottom: 20px;
            line-height: 1.8;
        }
        
        .cookie-text ul {
            margin-bottom: 25px;
            padding-left: 25px;
        }
        
        .cookie-text li {
            margin-bottom: 12px;
        }
        
        .cookie-types {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        
        .cookie-type {
            background-color: #f9f9f9;
            padding: 20px;
            border-radius: 10px;
            border-left: 4px solid #4A148C;
        }
        
        .cookie-type h4 {
            color: #0D47A1;
            margin-bottom: 10px;
        }
        
        /* Footer */
        .footer {
            background-color: #0D47A1;
            color: #F5E6D3;
            padding: 50px 0 20px;
        }
        
        .footer-container {
            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: #FFD700;
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 10px;
        }
        
        .footer-column ul li a {
            color: #F5E6D3;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .footer-column ul li a:hover {
            color: #FFD700;
            padding-left: 5px;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 14px;
        }
        
        /* Cookie notification */
        .cookie-notification {
            position: fixed;
            bottom: 20px;
            left: 20px;
            right: 20px;
            background-color: #0D47A1;
            color: #F5E6D3;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            transform: translateY(150%);
            transition: transform 0.3s ease;
        }
        
        .cookie-notification.show {
            transform: translateY(0);
        }
        
        .cookie-text {
            flex: 1;
            margin-right: 20px;
        }
        
        .cookie-text p {
            margin: 0;
            font-size: 14px;
            line-height: 1.6;
        }
        
        .cookie-btn {
            background-color: #FFD700;
            color: #0D47A1;
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            font-weight: bold;
            cursor: pointer;
            white-space: nowrap;
        }
        
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 40px;
            }
            
            .hero p {
                font-size: 18px;
            }
        }
        
        @media (max-width: 768px) {
            .nav {
                position: fixed;
                top: 0;
                right: -100%;
                width: 70%;
                height: 100vh;
                background-color: #0D47A1;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                transition: right 0.3s ease;
                z-index: 999;
            }
            
            .nav.active {
                right: 0;
            }
            
            .nav ul {
                flex-direction: column;
            }
            
            .nav ul li {
                margin: 15px 0;
            }
            
            .nav ul li a {
                font-size: 20px;
            }
            
            .burger-menu {
                display: flex;
                z-index: 1001;
            }
            
            .burger-menu.active span:nth-child(1) {
                transform: rotate(-45deg) translate(-5px, 6px);
            }
            
            .burger-menu.active span:nth-child(2) {
                opacity: 0;
            }
            
            .burger-menu.active span:nth-child(3) {
                transform: rotate(45deg) translate(-5px, -6px);
            }
            
            .hero h1 {
                font-size: 32px;
            }
            
            .hero p {
                font-size: 16px;
            }
            
            .cookie-notification {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .cookie-text {
                margin-right: 0;
                margin-bottom: 15px;
            }
            
            .cookie-btn {
                align-self: flex-end;
            }
        }
        
        @media (max-width: 576px) {
            .hero h1 {
                font-size: 28px;
            }
            
            .cookie-text h2 {
                font-size: 28px;
            }
            
            .cookie-text h3 {
                font-size: 22px;
            }
        }

