    
/* Additional styles for cookie policy page */
.page-hero {
    padding: 180px 0 100px;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 20% 50%, rgba(14, 165, 233, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
}

.zero-mb {
    margin-bottom: 0 !important
}
.zero-pb {
    padding-bottom: 0 !important
}
.page-hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    background: linear-gradient(to right, var(--text-primary), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-hero p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 20px;
    line-height: 1.8;
}

.last-updated {
    display: inline-block;
    background-color: rgba(14, 165, 233, 0.2);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

/* TOC Navigation */
.toc-container {
    background-color: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: var(--shadow-lg);
}

.toc-title {
    color: var(--text-primary);
    margin-bottom: 30px;
    font-size: 1.8rem;
    text-align: center;
}

.toc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.toc-item {
    display: flex;
    align-items: center;
    padding: 15px;
    background-color: rgba(14, 165, 233, 0.1);
    border-radius: var(--radius);
    transition: var(--transition);
    text-decoration: none;
    color: var(--text-secondary);
    border: 1px solid rgba(14, 165, 233, 0.2);
}

.toc-item:hover {
    background-color: rgba(14, 165, 233, 0.2);
    color: var(--primary);
    transform: translateY(-3px);
    border-color: var(--primary);
}

.toc-icon {
    background-color: var(--primary);
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 1rem;
    flex-shrink: 0;
}

/* Policy Sections */
.policy-content {
    padding: 0 0 100px;
}

.policy-section {
    background-color: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 50px;
    margin-bottom: 40px;
    box-shadow: var(--shadow-lg);
    scroll-margin-top: 120px;
}

.section-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(14, 165, 233, 0.2);
}

.section-number {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-right: 20px;
    flex-shrink: 0;
}

.section-title {
    color: var(--text-primary);
    font-size: 2rem;
    font-weight: 700;
}

.section-content {
    color: var(--text-secondary);
}

.section-content h3 {
    color: var(--text-primary);
    font-size: 1.4rem;
    margin: 30px 0 15px;
}

.section-content p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.section-content ul {
    list-style: none;
    margin-bottom: 25px;
}

.section-content ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
}

.section-content ul li i {
    margin-right: 12px;
    margin-top: 5px;
    color: var(--primary);
}

.highlight {
    background-color: rgba(14, 165, 233, 0.1);
    border-left: 4px solid var(--primary);
    padding: 25px;
    border-radius: var(--radius);
    margin: 30px 0;
}

.highlight p {
    margin-bottom: 0;
}

/* Cookie Types Grid */
.cookie-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.cookie-type-card {
    background-color: rgba(14, 165, 233, 0.05);
    border-radius: var(--radius);
    padding: 25px;
    border: 1px solid rgba(14, 165, 233, 0.1);
}

.cookie-type-card h4 {
    color: var(--text-primary);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.cookie-type-card h4 i {
    margin-right: 10px;
    color: var(--primary);
}

/* Cookie Badges */
.cookie-badge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-right: 8px;
}

.essential {
    background-color: var(--success);
    color: white;
}

.functional {
    background-color: var(--primary);
    color: white;
}

.analytics {
    background-color: var(--accent);
    color: white;
}

.performance {
    background-color: var(--warning);
    color: white;
}

.marketing {
    background-color: var(--danger);
    color: white;
}

/* Tables */
.cookies-table, .third-party-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

table thead {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

table th {
    color: white;
    text-align: left;
    padding: 20px;
    font-weight: 600;
}

table td {
    padding: 20px;
    border-bottom: 1px solid rgba(55, 65, 81, 0.3);
    color: var(--text-secondary);
}

table tr:nth-child(even) {
    background-color: rgba(55, 65, 81, 0.1);
}

table tr:last-child td {
    border-bottom: none;
}

table td i.fa-check-circle {
    color: var(--success);
}

table td i.fa-times-circle {
    color: var(--text-muted);
}

table td a {
    color: var(--primary);
    text-decoration: none;
}

/* Essential Cookies */
.essential-cookies {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.essential-cookie {
    background-color: rgba(16, 185, 129, 0.1);
    border-radius: var(--radius);
    padding: 20px;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.essential-cookie h4 {
    color: var(--text-primary);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.essential-cookie h4 i {
    margin-right: 10px;
    color: var(--secondary);
}

/* Purpose Grid */
.purpose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.purpose-card {
    background-color: rgba(14, 165, 233, 0.05);
    border-radius: var(--radius);
    padding: 25px;
    text-align: center;
    border: 1px solid rgba(14, 165, 233, 0.1);
    transition: var(--transition);
}

.purpose-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.purpose-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: white;
}

.purpose-card h4 {
    color: var(--text-primary);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.purpose-card p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Cookie Manager */
.cookie-manager {
    background-color: rgba(55, 65, 81, 0.1);
    border-radius: var(--radius-lg);
    padding: 40px;
    margin: 30px 0;
}

.cookie-category {
    background-color: var(--bg-card);
    border-radius: var(--radius);
    padding: 25px;
    margin-bottom: 20px;
    border: 1px solid var(--border);
}

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.category-title {
    display: flex;
    align-items: center;
}

.category-title h4 {
    color: var(--text-primary);
    margin-right: 15px;
    display: flex;
    align-items: center;
}

.category-title h4 i {
    margin-right: 10px;
}

.category-status {
    background-color: rgba(14, 165, 233, 0.1);
    color: var(--primary);
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--bg-card-light);
    transition: var(--transition);
    border-radius: 30px;
    border: 2px solid var(--border);
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 2px;
    bottom: 2px;
    background-color: var(--primary);
    transition: var(--transition);
    border-radius: 50%;
}

input:checked + .toggle-slider {
    background-color: rgba(14, 165, 233, 0.2);
    border-color: var(--primary);
}

input:checked + .toggle-slider:before {
    transform: translateX(28px);
}

input:disabled + .toggle-slider {
    background-color: rgba(16, 185, 129, 0.2);
    border-color: var(--success);
    cursor: not-allowed;
}

input:disabled + .toggle-slider:before {
    background-color: var(--success);
}

.category-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.cookie-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.preferences-status {
    background-color: rgba(14, 165, 233, 0.1);
    border-radius: var(--radius);
    padding: 15px;
    margin-top: 20px;
    display: flex;
    align-items: center;
    color: var(--primary);
}

.preferences-status i {
    margin-right: 10px;
    font-size: 1.2rem;
}

/* Browser Guides */
.browser-guides {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.browser-guide {
    background-color: rgba(14, 165, 233, 0.05);
    border-radius: var(--radius);
    padding: 25px;
    border: 1px solid rgba(14, 165, 233, 0.1);
}

.browser-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.browser-guide h4 {
    color: var(--text-primary);
    margin-bottom: 15px;
}

.browser-guide ol {
    margin-left: 20px;
    margin-bottom: 15px;
    color: var(--text-secondary);
}

.browser-guide ol li {
    margin-bottom: 8px;
}

.browser-guide a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-top: 10px;
}

/* Contact Info */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.contact-item {
    display: flex;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
    font-size: 1.2rem;
    color: white;
    flex-shrink: 0;
}

.contact-item h4 {
    color: var(--text-primary);
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.contact-item p {
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .page-hero {
        padding: 150px 0 80px;
    }
    
    .page-hero h1 {
        font-size: 2.5rem;
    }
    
    .policy-section {
        padding: 30px;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .section-number {
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .toc-container {
        padding: 25px;
    }
    
    .toc-grid {
        grid-template-columns: 1fr;
    }
    
    .cookie-manager {
        padding: 25px;
    }
    
    .cookie-actions {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    table {
        display: block;
        overflow-x: auto;
    }
}
