* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        :root {
            --primary-color: #e0f7fa;
            --secondary-color: #80deea;
            --accent-color: #4dd0e1;
            --highlight-color: #00bcd4;
            --text-dark: #263238;
            --text-light: #ffffff;
            --dark-bg: #006064;
            --transition: all 0.3s ease;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            background-color: var(--primary-color);
            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: var(--dark-bg);
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        
        .logo {
            font-size: 24px;
            font-weight: 700;
            color: var(--text-light);
            text-decoration: none;
            letter-spacing: 1px;
        }
        
        .logo span {
            color: var(--accent-color);
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
        }
        
        .nav-menu li {
            margin-left: 30px;
        }
        
        .nav-menu a {
            color: var(--text-light);
            text-decoration: none;
            font-size: 16px;
            font-weight: 500;
            transition: var(--transition);
            position: relative;
        }
        
        .nav-menu a:hover {
            color: var(--accent-color);
        }
        
        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--accent-color);
            transition: var(--transition);
        }
        
        .nav-menu a:hover::after {
            width: 100%;
        }
        
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }
        
        .hamburger span {
            width: 25px;
            height: 3px;
            background-color: var(--text-light);
            margin: 3px 0;
            transition: var(--transition);
        }
        
        /* Cookie Content */
        .cookie-content {
            padding: 120px 0 80px;
            background-color: var(--primary-color);
        }
        
        .cookie-header {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .cookie-header h1 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: var(--text-dark);
        }
        
        .cookie-header p {
            max-width: 800px;
            margin: 0 auto;
            color: var(--text-dark);
        }
        
        .cookie-section {
            background-color: var(--secondary-color);
            border-radius: 10px;
            padding: 30px;
            margin-bottom: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .cookie-section h2 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: var(--text-dark);
            position: relative;
            padding-bottom: 10px;
        }
        
        .cookie-section h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background-color: var(--highlight-color);
        }
        
        .cookie-section h3 {
            font-size: 1.4rem;
            margin: 20px 0 15px;
            color: var(--text-dark);
        }
        
        .cookie-section p {
            margin-bottom: 15px;
            color: var(--text-dark);
        }
        
        .cookie-section ul {
            margin-left: 20px;
            margin-bottom: 15px;
        }
        
        .cookie-section li {
            margin-bottom: 10px;
            color: var(--text-dark);
        }
        
        .cookie-section strong {
            color: var(--highlight-color);
        }
        
        .cookie-types {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-bottom: 30px;
        }
        
        .cookie-type {
            background-color: var(--accent-color);
            border-radius: 10px;
            padding: 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .cookie-type h3 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: var(--text-light);
        }
        
        .cookie-type p {
            color: var(--text-light);
            margin-bottom: 15px;
        }
        
        .cookie-type ul {
            margin-left: 15px;
        }
        
        .cookie-type li {
            margin-bottom: 8px;
            color: var(--text-light);
        }
        
        /* Footer */
        footer {
            background-color: var(--dark-bg);
            padding: 70px 0 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 50px;
        }
        
        .footer-column h3 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: var(--text-light);
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background-color: var(--accent-color);
        }
        
        .footer-column p {
            color: var(--text-light);
            margin-bottom: 20px;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: var(--text-light);
            text-decoration: none;
            transition: var(--transition);
        }
        
        .footer-links a:hover {
            color: var(--accent-color);
            padding-left: 5px;
        }
        
        .contact-info p {
            color: var(--text-light);
            margin-bottom: 10px;
            display: flex;
            align-items: center;
        }
        
        .contact-info i {
            margin-right: 10px;
            color: var(--accent-color);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--text-light);
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }
            
            .nav-menu {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 70px);
                background-color: var(--dark-bg);
                flex-direction: column;
                align-items: center;
                justify-content: flex-start;
                padding-top: 50px;
                transition: left 0.5s ease;
            }
            
            .nav-menu.active {
                left: 0;
            }
            
            .nav-menu li {
                margin: 15px 0;
            }
            
            .cookie-header h1 {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 576px) {
            .cookie-header h1 {
                font-size: 1.8rem;
            }
            
            .cookie-section {
                padding: 20px;
            }
            
            .cookie-section h2 {
                font-size: 1.5rem;
            }
            
            .cookie-section h3 {
                font-size: 1.2rem;
            }
        }

