  /* Cookie Content Styles */
        .cookie-content {
            /* padding: 60px 0; */
            background-color: white;
            max-width: 900px;
            margin: 0 auto;
            padding-bottom: 60px;
        }
        
        .cookie-content h1 {
            color: #2c7873;
            margin-bottom: 30px;
            font-size: 2.2rem;
            text-align: center;
        }
        
        .cookie-intro {
            text-align: center;
            margin-bottom: 40px;
            padding: 30px;
            background: linear-gradient(135deg, #f8f9fa, #e9ecef);
            border-radius: 15px;
            border-left: 5px solid #2c7873;
        }
        
        .cookie-intro p {
            font-size: 1.1rem;
            color: #333;
            margin: 0;
        }
        
        .cookie-section {
            margin-bottom: 40px;
            padding: 30px;
            background: #f9f9f9;
            border-radius: 15px;
            border: 1px solid #e0e0e0;
            transition: transform 0.3s;
        }
        /*
        .cookie-section:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
        } */
        
        .cookie-section h2 {
            color: #2c7873;
            margin-bottom: 20px;
            font-size: 1.6rem;
            padding-bottom: 10px;
            border-bottom: 2px solid #2c7873;
        }
        
        .cookie-section h3 {
            color: #333;
            margin: 20px 0 10px;
            font-size: 1.3rem;
        }
        
        .cookie-section p {
            margin-bottom: 15px;
            line-height: 1.6;
            color: #555;
        }
        
        .cookie-section ul, .cookie-section ol {
            padding-left: 25px;
            margin-bottom: 15px;
        }
        
        .cookie-section li {
            margin-bottom: 10px;
            line-height: 1.6;
            color: #555;
        }
        
        .cookie-table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }
        
        .cookie-table th {
            background: #2c7873;
            color: white;
            padding: 15px;
            text-align: left;
            font-weight: bold;
        }
        
        .cookie-table td {
            padding: 15px;
            border-bottom: 1px solid #eee;
        }
        
        .cookie-table tr:last-child td {
            border-bottom: none;
        }
        
        .cookie-table tr:hover {
            background: #f0f7f6;
        }
        
        .cookie-type {
            display: inline-block;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: bold;
            margin-right: 10px;
        }
        
        .type-essential {
            background: #e8f4f3;
            color: #2c7873;
        }
        
        .type-analytics {
            background: #fff3e0;
            color: #e67e22;
        }
        
        .type-marketing {
            background: #f3e5f5;
            color: #9b59b6;
        }
        
        .type-functional {
            background: #e1f5fe;
            color: #0288d1;
        }
        
        .info-box {
            background: #e8f4f3;
            padding: 20px;
            border-radius: 10px;
            margin: 20px 0;
            border-left: 4px solid #2c7873;
        }
        
        .warning-box {
            background: #fff5e6;
            padding: 20px;
            border-radius: 10px;
            margin: 20px 0;
            border-left: 4px solid #ff7e5f;
        }
        
        .browser-instructions {
            background: #f0f7f6;
            padding: 25px;
            border-radius: 10px;
            margin: 30px 0;
        }
        
        .browser-instructions h3 {
            color: #2c7873;
            margin-top: 0;
            margin-bottom: 20px;
        }
        
        .browser-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 15px;
            margin-top: 20px;
        }
        
        .browser-item {
            background: white;
            padding: 15px;
            border-radius: 8px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        }
        
        .browser-item strong {
            color: #2c7873;
            display: block;
            margin-bottom: 5px;
        }
        
        .consent-box {
            background: linear-gradient(135deg, #2c7873, #3a9e95);
            padding: 30px;
            border-radius: 15px;
            color: white;
            text-align: center;
            margin: 40px 0;
        }
        
        .consent-box h3 {
            color: white;
            margin-bottom: 15px;
            font-size: 1.4rem;
        }
        
        .consent-box p {
            color: rgba(255,255,255,0.9);
            margin-bottom: 20px;
        }
        
        .consent-btn {
            display: inline-block;
            background: white;
            color: #2c7873;
            padding: 12px 30px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: bold;
            margin: 10px;
            transition: all 0.3s;
            border: 2px solid white;
        }
        
        .consent-btn:hover {
            background: transparent;
            color: white;
        }
        
        .consent-btn.secondary {
            background: transparent;
            color: white;
            border: 2px solid white;
        }
        
        .consent-btn.secondary:hover {
            background: white;
            color: #2c7873;
        }
        
        .last-updated {
            text-align: center;
            color: #777;
            font-style: italic;
            margin-top: 40px;
            padding: 20px;
            border-top: 1px solid #eee;
        }
        
        .back-links {
            text-align: center;
            margin-top: 40px;
            padding-top: 30px;
            border-top: 1px solid #eee;
        }
        
        .back-links a {
            display: inline-block;
            margin: 0 10px;
            color: #2c7873;
            text-decoration: none;
            font-weight: bold;
            padding: 10px 20px;
            border: 2px solid #2c7873;
            border-radius: 5px;
            transition: all 0.3s;
        }
        
        .back-links a:hover {
            background-color: #2c7873;
            color: white;
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {            
            .cookie-content {
                padding: 30px 15px;
            }
            
            .cookie-content h1 {
                font-size: 1.8rem;
            }
            
            .cookie-section {
                padding: 20px;
            }
            
            .cookie-table {
                display: block;
                overflow-x: auto;
            }
            
            .browser-list {
                grid-template-columns: 1fr;
            }
            
            .consent-btn {
                display: block;
                margin: 10px 0;
            }
            
            .back-links a {
                display: block;
                margin: 10px 0;
            }
        }
        
        @media (max-width: 480px) {
            .cookie-content h1 {
                font-size: 1.5rem;
            }
            
            .cookie-section h2 {
                font-size: 1.3rem;
            }
            
            .cookie-section h3 {
                font-size: 1.1rem;
            }
            
            .close-menu {
                top: 20px;
                right: 20px;
                font-size: 2.2rem;
            }
        }