/* CSS Reset */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Arial', sans-serif;
            background-color: #0a192f;
            color: #ffffff;
            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(10, 25, 47, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 15px 0;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 24px;
            font-weight: bold;
            color: #64ffda;
            text-decoration: none;
            letter-spacing: 1px;
        }
        
        .logo span {
            color: #ff6b6b;
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
        }
        
        .nav-menu li {
            margin-left: 30px;
        }
        
        .nav-menu a {
            color: #ffffff;
            text-decoration: none;
            font-size: 16px;
            transition: color 0.3s;
        }
        
        .nav-menu a:hover {
            color: #64ffda;
        }
        
        .burger {
            display: none;
            cursor: pointer;
        }
        
        .burger div {
            width: 25px;
            height: 3px;
            background-color: #ffffff;
            margin: 5px 0;
            transition: all 0.3s ease;
        }
        
        /* Hero Section */
        .hero {
            height: 50vh;
            display: flex;
            align-items: center;
            background: linear-gradient(rgba(10, 25, 47, 0.8), rgba(10, 25, 47, 0.8)), url('../img/05.webp');
            background-size: cover;
            background-position: center;
            position: relative;
            overflow: hidden;
        }
        
        .hero-content {
            max-width: 800px;
            animation: fadeInUp 1s ease;
        }
        
        .hero h1 {
            font-size: 48px;
            margin-bottom: 20px;
            color: #64ffda;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
        }
        
        .hero p {
            font-size: 20px;
            margin-bottom: 30px;
            color: #ffffff;
        }
        
        .btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: #64ffda;
            color: #0a192f;
            text-decoration: none;
            border-radius: 4px;
            font-weight: bold;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 16px;
        }
        
        .btn:hover {
            background-color: #4fd1b7;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(100, 255, 218, 0.3);
        }
        
        /* Section Styles */
        section {
            padding: 80px 0;
            position: relative;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-title h2 {
            font-size: 36px;
            color: #64ffda;
            margin-bottom: 15px;
        }
        
        .section-title p {
            font-size: 18px;
            color: #8892b0;
            max-width: 700px;
            margin: 0 auto;
        }
        
        /* Privacy Policy Content */
        .privacy-content {
            max-width: 800px;
            margin: 0 auto;
            background-color: #172a45;
            border-radius: 8px;
            padding: 40px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .privacy-content h3 {
            color: #64ffda;
            margin: 30px 0 15px;
            font-size: 24px;
        }
        
        .privacy-content h3:first-child {
            margin-top: 0;
        }
        
        .privacy-content p {
            color: #8892b0;
            margin-bottom: 15px;
        }
        
        .privacy-content ul {
            margin-left: 20px;
            margin-bottom: 15px;
        }
        
        .privacy-content li {
            color: #8892b0;
            margin-bottom: 10px;
        }
        
        /* Disclaimer Section */
        .disclaimer {
            background-color: #172a45;
            padding: 30px;
            border-radius: 8px;
            margin-top: 50px;
        }
        
        .disclaimer h3 {
            color: #ff6b6b;
            margin-bottom: 15px;
        }
        
        .disclaimer p {
            color: #8892b0;
            font-size: 14px;
        }
        
        /* Footer */
        footer {
            background-color: #0a192f;
            padding: 50px 0 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        
        .footer-column h3 {
            color: #64ffda;
            margin-bottom: 20px;
            font-size: 18px;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: #8892b0;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-links a:hover {
            color: #64ffda;
        }
        
        .footer-contact p {
            color: #8892b0;
            margin-bottom: 10px;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #8892b0;
            font-size: 14px;
        }
        
        /* Cookie Notification */
        .cookie-notification {
            position: fixed;
            bottom: 20px;
            left: 20px;
            right: 20px;
            background-color: #172a45;
            border-radius: 8px;
            padding: 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 ease;
        }
        
        .cookie-notification.show {
            transform: translateY(0);
        }
        
        .cookie-text {
            color: #8892b0;
            margin-right: 20px;
            flex: 1;
        }
        
        .cookie-text a {
            color: #64ffda;
            text-decoration: none;
        }
        
        .cookie-buttons {
            display: flex;
            gap: 10px;
        }
        
        .cookie-btn {
            padding: 8px 16px;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-size: 14px;
            transition: all 0.3s ease;
        }
        
        .cookie-accept {
            background-color: #64ffda;
            color: #0a192f;
            font-weight: bold;
        }
        
        .cookie-accept:hover {
            background-color: #4fd1b7;
        }
        
        .cookie-decline {
            background-color: transparent;
            color: #8892b0;
            border: 1px solid #8892b0;
        }
        
        .cookie-decline:hover {
            color: #ffffff;
            border-color: #ffffff;
        }
        
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 70px);
                background-color: #0a192f;
                flex-direction: column;
                align-items: center;
                justify-content: start;
                padding-top: 50px;
                transition: left 0.5s ease;
            }
            
            .nav-menu.active {
                left: 0;
            }
            
            .nav-menu li {
                margin: 0 0 30px 0;
            }
            
            .burger {
                display: block;
            }
            
            .hero h1 {
                font-size: 36px;
            }
            
            .hero p {
                font-size: 18px;
            }
            
            .section-title h2 {
                font-size: 30px;
            }
        }
        
        @media (max-width: 576px) {
            .hero h1 {
                font-size: 28px;
            }
            
            .hero p {
                font-size: 16px;
            }
            
            section {
                padding: 60px 0;
            }
            
            .privacy-content {
                padding: 20px;
            }
            
            .cookie-notification {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .cookie-text {
                margin-right: 0;
                margin-bottom: 15px;
            }
        }

