* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            transition: all 0.3s ease;
        }

        :root {
            --primary: #2563eb;
            --primary-dark: #1d4ed8;
            --secondary: #8b5cf6;
            --accent: #ec4899;
            --dark: #0f172a;
            --darker: #0a1120;
            --light: #f8fafc;
            --lighter: #ffffff;
            --gray: #64748b;
            --success: #10b981;
            --warning: #f59e0b;
            --danger: #ef4444;
            --transition: all 0.3s ease;
            --shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            --shadow-hover: 0 15px 35px rgba(0, 0, 0, 0.15);
        }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: var(--dark);
            background-color: var(--lighter);
            overflow-x: hidden;
            padding: 20px;
            background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
        }

        body.dark-mode {
            background-color: var(--darker);
            color: #e2e8f0;
            background: linear-gradient(135deg, #0c1a2d 0%, #0d2139 100%);
        }

        h1, h2, h3, h4, h5 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            line-height: 1.2;
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        section {
            padding: 100px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
        }

        .section-title h2 {
            font-size: 2.8rem;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: var(--primary);
            border-radius: 2px;
        }

        .section-title p {
            font-size: 1.2rem;
            color: var(--gray);
            max-width: 700px;
            margin: 30px auto 0;
        }

        body.dark-mode .section-title p {
            color: #94a3b8;
        }

        /* Theme Toggle Styles */
        .theme-toggle-container {
            display: flex;
            align-items: center;
        }
        
        .theme-toggle {
            width: 60px;
            height: 30px;
            background: rgba(37, 99, 235, 0.2);
            border-radius: 50px;
            position: relative;
            cursor: pointer;
            display: flex;
            align-items: center;
            padding: 0 5px;
            box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        body.dark-mode .theme-toggle {
            background: rgba(37, 99, 235, 0.3);
        }
        
        .toggle-switch {
            width: 22px;
            height: 22px;
            background: white;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            position: absolute;
            left: 4px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease;
        }
        
        body.dark-mode .toggle-switch {
            background: #1e293b;
            transform: translateX(30px);
        }
        
        .toggle-icon {
            font-size: 0.9rem;
            color: #FFA500;
            transition: opacity 0.3s ease;
        }
        
        body.dark-mode .toggle-icon {
            color: #FFD700;
        }
        
        .sun-icon {
            position: absolute;
            left: 7px;
        }
        
        .moon-icon {
            position: absolute;
            right: 7px;
            opacity: 0.7;
        }
        
        body.dark-mode .sun-icon {
            opacity: 0.7;
        }
        
        body.dark-mode .moon-icon {
            opacity: 1;
        }

        /* Cookie Policy Styles */
        .policy-container {
            max-width: 900px;
            margin: 0 auto;
            padding: 100px 20px 50px;
        }
        
        .policy-header {
            text-align: center;
            margin-bottom: 50px;
            padding-top: 50px;
        }
        
        .policy-header h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            color: var(--primary);
        }
        
        .last-updated {
            color: var(--gray);
            font-size: 1.1rem;
            margin-top: 10px;
        }
        
        body.dark-mode .last-updated {
            color: #94a3b8;
        }
        
        .policy-section {
            margin-bottom: 50px;
            background: var(--lighter);
            border-radius: 20px;
            padding: 40px;
            box-shadow: var(--shadow);
        }
        
        body.dark-mode .policy-section {
            background: #1e293b;
        }
        
        .policy-section h2 {
            font-size: 2rem;
            margin-bottom: 25px;
            color: var(--primary);
            position: relative;
            padding-bottom: 15px;
        }
        
        .policy-section h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: var(--primary);
        }
        
        .policy-section p {
            margin-bottom: 20px;
            line-height: 1.8;
        }
        
        .policy-section ul, .policy-section ol {
            margin-left: 30px;
            margin-bottom: 20px;
        }
        
        .policy-section li {
            margin-bottom: 15px;
            line-height: 1.7;
        }
        
        .cookie-table {
            width: 100%;
            border-collapse: collapse;
            margin: 25px 0;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        
        .cookie-table th {
            background: var(--primary);
            color: white;
            text-align: left;
            padding: 15px;
            font-weight: 600;
        }
        
        .cookie-table td {
            padding: 15px;
            border-bottom: 1px solid #e2e8f0;
        }
        
        body.dark-mode .cookie-table td {
            border-bottom: 1px solid #334155;
        }
        
        .cookie-table tr:nth-child(even) {
            background: rgba(37, 99, 235, 0.05);
        }
        
        body.dark-mode .cookie-table tr:nth-child(even) {
            background: rgba(37, 99, 235, 0.1);
        }
        
        .cookie-type {
            font-weight: 600;
        }
        
        .cookie-purpose {
            color: var(--gray);
        }
        
        body.dark-mode .cookie-purpose {
            color: #94a3b8;
        }
        
        .cookie-duration {
            font-style: italic;
        }
        
        .cookie-actions {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin: 40px 0 20px;
        }
        
        .btn-cookie {
            padding: 14px 32px;
            background: var(--primary);
            color: white;
            border: none;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            text-align: center;
            font-size: 1.05rem;
            box-shadow: var(--shadow);
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        
        .btn-cookie:hover {
            background: var(--primary-dark);
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }
        
        .btn-cookie-outline {
            background: transparent;
            border: 2px solid var(--primary);
            color: var(--primary);
        }
        
        .btn-cookie-outline:hover {
            background: rgba(37, 99, 235, 0.1);
        }
        
        .info-box {
            background: rgba(37, 99, 235, 0.05);
            border-left: 4px solid var(--primary);
            padding: 20px;
            border-radius: 0 8px 8px 0;
            margin: 25px 0;
        }
        
        body.dark-mode .info-box {
            background: rgba(37, 99, 235, 0.1);
        }
        
        .info-box h3 {
            margin-bottom: 10px;
            color: var(--primary);
        }
        
        /* Footer */
        footer {
            background: var(--dark);
            color: white;
            padding: 80px 0 30px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 50px;
            margin-bottom: 60px;
        }
        
        .footer-column h3 {
            font-size: 1.5rem;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 15px;
        }
        
        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--primary);
        }
        
        .footer-column p {
            margin-bottom: 20px;
            color: #94a3b8;
            font-size: 1.1rem;
        }
        
        .footer-column a {
            color: #94a3b8;
            text-decoration: none;
            transition: var(--transition);
            display: block;
            margin-bottom: 15px;
            font-size: 1.1rem;
        }
        
        .footer-column a:hover {
            color: white;
            transform: translateX(5px);
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #334155;
            color: #94a3b8;
            font-size: 1rem;
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 20px;
        }
        
        .copyright-links a {
            color: #94a3b8;
            text-decoration: none;
            margin-left: 25px;
            transition: var(--transition);
        }
        
        .copyright-links a:hover {
            color: white;
        }
        
        /* Cookie Settings Modal */
        .gdpr-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.7);
            z-index: 3000;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        
        .gdpr-modal.visible {
            opacity: 1;
            visibility: visible;
        }
        
        .modal-content {
            background: white;
            width: 90%;
            max-width: 700px;
            border-radius: 15px;
            overflow: hidden;
            max-height: 90vh;
            overflow-y: auto;
        }
        
        body.dark-mode .modal-content {
            background: var(--darker);
        }
        
        .modal-header {
            padding: 25px;
            background: var(--dark);
            color: white;
            position: relative;
        }
        
        .modal-title {
            font-size: 1.8rem;
        }
        
        .close-modal {
            position: absolute;
            top: 25px;
            right: 25px;
            font-size: 1.5rem;
            cursor: pointer;
            background: none;
            border: none;
            color: white;
        }
        
        .modal-body {
            padding: 30px;
        }
        
        .cookie-type {
            margin-bottom: 25px;
            padding-bottom: 25px;
            border-bottom: 1px solid #e2e8f0;
        }
        
        body.dark-mode .cookie-type {
            border-bottom: 1px solid #334155;
        }
        
        .cookie-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .cookie-name {
            font-size: 1.3rem;
            font-weight: 600;
        }
        
        .cookie-toggle {
            position: relative;
            display: inline-block;
            width: 60px;
            height: 30px;
        }
        
        .cookie-toggle input {
            opacity: 0;
            width: 0;
            height: 0;
        }
        
        .cookie-slider {
            position: absolute;
            cursor: pointer;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: #ccc;
            transition: .4s;
            border-radius: 30px;
        }
        
        .cookie-slider:before {
            position: absolute;
            content: "";
            height: 22px;
            width: 22px;
            left: 4px;
            bottom: 4px;
            background-color: white;
            transition: .4s;
            border-radius: 50%;
        }
        
        input:checked + .cookie-slider {
            background-color: var(--success);
        }
        
        input:checked + .cookie-slider:before {
            transform: translateX(30px);
        }
        
        .cookie-desc {
            color: var(--gray);
            font-size: 1.05rem;
            line-height: 1.6;
        }
        
        body.dark-mode .cookie-desc {
            color: #94a3b8;
        }
        
        .cookie-list {
            margin-top: 15px;
            padding: 15px;
            background: rgba(37, 99, 235, 0.05);
            border-radius: 10px;
        }
        
        body.dark-mode .cookie-list {
            background: rgba(37, 99, 235, 0.1);
        }
        
        .cookie-item {
            display: flex;
            justify-content: space-between;
            padding: 10px 0;
            border-bottom: 1px dashed #e2e8f0;
        }
        
        body.dark-mode .cookie-item {
            border-bottom: 1px dashed #334155;
        }
        
        .cookie-item:last-child {
            border-bottom: none;
        }
        
        .modal-footer {
            padding: 25px;
            background: #f8fafc;
            display: flex;
            justify-content: flex-end;
            gap: 15px;
        }
        
        body.dark-mode .modal-footer {
            background: #0f172a;
        }
        
        /* Responsive Styles */
        @media (max-width: 992px) {
            .nav-links {
                position: fixed;
                top: 0;
                right: -300px;
                width: 300px;
                height: 100vh;
                background: var(--lighter);
                flex-direction: column;
                align-items: flex-start;
                padding: 100px 40px 40px;
                box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
                transition: var(--transition);
                z-index: 1000;
            }
            
            body.dark-mode .nav-links {
                background: var(--darker);
            }
            
            .nav-links.active {
                right: 0;
            }
            
            .nav-links li {
                margin: 0 0 25px 0;
            }
            
            .policy-section {
                padding: 30px;
            }
            
            .cookie-actions {
                flex-direction: column;
            }
        }
        
        @media (max-width: 768px) {
            .section-title h2 {
                font-size: 2.2rem;
            }
            
            .policy-header h1 {
                font-size: 2.5rem;
            }
            
            .policy-section h2 {
                font-size: 1.8rem;
            }
            
            .cookie-table {
                display: block;
                overflow-x: auto;
            }
        }

        @media (max-width: 576px) {
            .section-title h2 {
                font-size: 2rem;
            }
            
            .policy-header h1 {
                font-size: 2rem;
            }
            
            .policy-section {
                padding: 20px;
            }
        }