        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background: #f8f9fa;
        }
        
        /* Header Styles */
        .header {
            background: #fff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
        }
        
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 2rem;
        }
        
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: #e74c3c;
            text-decoration: none;
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        
        .nav-menu a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            transition: color 0.3s;
        }
        
        .nav-menu a:hover {
            color: #e74c3c;
        }
        
        .contact-btn {
            background: #e74c3c;
            color: white;
            padding: 0.8rem 1.5rem;
            border-radius: 5px;
            text-decoration: none;
            transition: background 0.3s;
        }
        
        .contact-btn:hover {
            background: #c0392b;
        }
        
        /* Page Header */
        .page-header {
            background: linear-gradient(135deg, #f39c12, #e67e22);
            color: white;
            text-align: center;
            padding: 120px 0 80px;
            margin-top: 70px;
        }
        
        .page-header h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            font-weight: 700;
        }
        
        .page-header p {
            font-size: 1.2rem;
            opacity: 0.9;
            max-width: 600px;
            margin: 0 auto;
        }
        
        .last-updated {
            background: rgba(255,255,255,0.1);
            color: white;
            padding: 1rem 2rem;
            border-radius: 8px;
            margin-top: 2rem;
            display: inline-block;
        }
        
        /* Content Section */
        .content-section {
            padding: 80px 0;
        }
        
        .container {
            max-width: 900px;
            margin: 0 auto;
            padding: 0 2rem;
        }
        
        .content-wrapper {
            background: white;
            border-radius: 15px;
            padding: 4rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            position: relative;
        }
        
        .content-wrapper::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(135deg, #f39c12, #e67e22);
            border-radius: 15px 15px 0 0;
        }
        
        /* Table of Contents */
        .toc {
            background: #f8f9fa;
            border-left: 4px solid #f39c12;
            padding: 2rem;
            margin-bottom: 3rem;
            border-radius: 0 8px 8px 0;
        }
        
        .toc h3 {
            color: #2c3e50;
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }
        
        .toc ul {
            list-style: none;
            padding-left: 0;
        }
        
        .toc li {
            margin-bottom: 0.8rem;
        }
        
        .toc a {
            color: #7f8c8d;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
            display: flex;
            align-items: center;
        }
        
        .toc a:hover {
            color: #f39c12;
        }
        
        .toc a::before {
            content: '🍪';
            margin-right: 0.5rem;
        }
        
        /* Content Sections */
        .cookie-section {
            margin-bottom: 3rem;
            scroll-margin-top: 100px;
        }
        
        .cookie-section h2 {
            color: #2c3e50;
            font-size: 2rem;
            margin-bottom: 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 3px solid #f39c12;
            display: flex;
            align-items: center;
        }
        
        .cookie-section h2 i {
            margin-right: 1rem;
            color: #f39c12;
            font-size: 1.5rem;
        }
        
        .cookie-section h3 {
            color: #34495e;
            font-size: 1.4rem;
            margin: 2rem 0 1rem;
        }
        
        .cookie-section p {
            color: #7f8c8d;
            margin-bottom: 1.5rem;
            line-height: 1.8;
            text-align: justify;
        }
        
        .cookie-section ul,
        .cookie-section ol {
            color: #7f8c8d;
            margin-bottom: 1.5rem;
            padding-left: 2rem;
        }
        
        .cookie-section li {
            margin-bottom: 0.8rem;
            line-height: 1.6;
        }
        
        /* Cookie Types Table */
        .cookie-table {
            width: 100%;
            border-collapse: collapse;
            margin: 2rem 0;
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .cookie-table th {
            background: linear-gradient(135deg, #f39c12, #e67e22);
            color: white;
            padding: 1rem;
            text-align: left;
            font-weight: 600;
        }
        
        .cookie-table td {
            padding: 1rem;
            border-bottom: 1px solid #ecf0f1;
            vertical-align: top;
        }
        
        .cookie-table tr:hover {
            background: #f8f9fa;
        }
        
        .cookie-table .cookie-name {
            font-weight: 600;
            color: #2c3e50;
        }
        
        .cookie-table .cookie-purpose {
            font-size: 0.9rem;
            color: #7f8c8d;
        }
        
        .cookie-table .cookie-duration {
            font-weight: 500;
            color: #e67e22;
        }
        
        /* Browser Instructions */
        .browser-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 2rem 0;
        }
        
        .browser-card {
            background: white;
            border: 2px solid #ecf0f1;
            border-radius: 10px;
            padding: 2rem;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }
        
        .browser-card:hover {
            border-color: #f39c12;
            transform: translateY(-2px);
        }
        
        .browser-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(135deg, #f39c12, #e67e22);
        }
        
        .browser-icon {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
            font-size: 2rem;
        }
        
        .chrome .browser-icon {
            background: linear-gradient(135deg, #4285f4, #34a853);
            color: white;
        }
        
        .firefox .browser-icon {
            background: linear-gradient(135deg, #ff9500, #ff5722);
            color: white;
        }
        
        .safari .browser-icon {
            background: linear-gradient(135deg, #007aff, #5856d6);
            color: white;
        }
        
        .edge .browser-icon {
            background: linear-gradient(135deg, #0078d4, #106ebe);
            color: white;
        }
        
        .browser-card h4 {
            color: #2c3e50;
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }
        
        .browser-steps {
            list-style: none;
            padding: 0;
        }
        
        .browser-steps li {
            margin-bottom: 0.8rem;
            padding-left: 1.5rem;
            position: relative;
            color: #7f8c8d;
            font-size: 0.95rem;
        }
        
        .browser-steps li::before {
            content: counter(step-counter);
            counter-increment: step-counter;
            position: absolute;
            left: 0;
            top: 0;
            background: #f39c12;
            color: white;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            font-weight: bold;
        }
        
        .browser-card ol {
            counter-reset: step-counter;
        }
        
        /* Info Boxes */
        .info-box {
            background: linear-gradient(135deg, #3498db, #2980b9);
            color: white;
            padding: 2rem;
            border-radius: 10px;
            margin: 2rem 0;
            position: relative;
            overflow: hidden;
        }
        
        .info-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(255,255,255,0.1);
            border-radius: 10px;
        }
        
        .info-box-content {
            position: relative;
            z-index: 2;
        }
        
        .info-box h4 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
        }
        
        .info-box h4 i {
            margin-right: 0.5rem;
            font-size: 1.2rem;
        }
        
        .info-box p {
            color: white;
            opacity: 0.95;
            margin-bottom: 0;
        }
        
        /* Warning Box */
        .warning-box {
            background: #fff3cd;
            border: 1px solid #ffeaa7;
            border-left: 4px solid #f39c12;
            padding: 1.5rem;
            border-radius: 8px;
            margin: 2rem 0;
        }
        
        .warning-box h4 {
            color: #856404;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
        }
        
        .warning-box h4 i {
            margin-right: 0.5rem;
        }
        
        .warning-box p {
            color: #856404;
            margin-bottom: 0;
        }
        
        /* Contact Info Box */
        .contact-info-box {
            background: #e8f5e8;
            border: 1px solid #c3e6c3;
            border-left: 4px solid #27ae60;
            padding: 2rem;
            border-radius: 8px;
            margin: 2rem 0;
        }
        
        .contact-info-box h4 {
            color: #27ae60;
            margin-bottom: 1rem;
        }
        
        .contact-info-box p {
            color: #2d5930;
            margin-bottom: 0.5rem;
        }
        
        .contact-info-box a {
            color: #27ae60;
            text-decoration: none;
            font-weight: 600;
        }
        
        .contact-info-box a:hover {
            text-decoration: underline;
        }
        
        /* Toggle Switch */
        .toggle-container {
            display: flex;
            align-items: center;
            margin: 1rem 0;
            padding: 1rem;
            background: #f8f9fa;
            border-radius: 8px;
        }
        
        .toggle-switch {
            position: relative;
            width: 60px;
            height: 34px;
            margin-right: 1rem;
        }
        
        .toggle-switch input {
            opacity: 0;
            width: 0;
            height: 0;
        }
        
        .slider {
            position: absolute;
            cursor: pointer;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: #ccc;
            transition: .4s;
            border-radius: 34px;
        }
        
        .slider:before {
            position: absolute;
            content: "";
            height: 26px;
            width: 26px;
            left: 4px;
            bottom: 4px;
            background-color: white;
            transition: .4s;
            border-radius: 50%;
        }
        
        input:checked + .slider {
            background-color: #f39c12;
        }
        
        input:checked + .slider:before {
            transform: translateX(26px);
        }
        
        .toggle-label {
            font-weight: 500;
            color: #2c3e50;
        }
        
        /* Footer */
        .footer {
            background: #2c3e50;
            color: white;
            padding: 50px 0 20px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }
        
        .footer-section h4 {
            margin-bottom: 1.5rem;
            color: #e74c3c;
        }
        
        .footer-section ul {
            list-style: none;
        }
        
        .footer-section ul li {
            margin-bottom: 0.8rem;
        }
        
        .footer-section ul li a {
            color: #bdc3c7;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-section ul li a:hover {
            color: white;
        }
        
        .footer-bottom {
            border-top: 1px solid #34495e;
            margin-top: 2rem;
            padding-top: 2rem;
            text-align: center;
            color: #bdc3c7;
        }
        
        /* Mobile Responsive */
        @media (max-width: 768px) {
            .nav-menu {
                display: none;
            }
            
            .page-header h1 {
                font-size: 2rem;
            }
            
            .content-wrapper {
                padding: 2rem;
            }
            
            .toc {
                padding: 1.5rem;
            }
            
            .cookie-section h2 {
                font-size: 1.5rem;
            }
            
            .cookie-table {
                font-size: 0.9rem;
            }
            
            .browser-grid {
                grid-template-columns: 1fr;
            }
        }