#custom-container-privacy {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

#custom-container-privacy .cms-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Privacy Hero Section */
#custom-container-privacy .privacy-hero {
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-dark));
    padding: 140px 0 60px 0;
    position: relative;
    overflow: hidden;
}

#custom-container-privacy .privacy-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

#custom-container-privacy .hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
}

#custom-container-privacy .hero-title {
    font-size: var(--text-4xl);
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
}

#custom-container-privacy .hero-subtitle {
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Privacy Content Section */
#custom-container-privacy .privacy-content {
    padding: 4rem 0;
    background: white;
}

#custom-container-privacy .content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

#custom-container-privacy .last-updated {
    display: inline-block;
    background: linear-gradient(135deg, #f8f9fb, #f5f5f8);
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    color: var(--brand-neutral);
    font-size: var(--text-sm);
    margin-bottom: 2rem;
}

#custom-container-privacy h2 {
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--brand-dark);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #e5e7eb;
}

#custom-container-privacy h3 {
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--brand-dark);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

#custom-container-privacy p {
    color: var(--brand-neutral);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: var(--text-base);
}

#custom-container-privacy ul, #custom-container-privacy ol {
    color: var(--brand-neutral);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

#custom-container-privacy li {
    margin-bottom: 0.5rem;
}

#custom-container-privacy .highlight-box {
    background: linear-gradient(135deg, #f8f9fb, #f5f5f8);
    border-left: 4px solid var(--brand-primary);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0.5rem;
}

#custom-container-privacy .highlight-box p {
    margin-bottom: 0;
    color: var(--brand-dark);
}

#custom-container-privacy .contact-info {
    background: white;
    border: 2px solid var(--brand-primary);
    border-radius: 0.75rem;
    padding: 2rem;
    margin-top: 3rem;
}

#custom-container-privacy .contact-info h3 {
    color: var(--brand-primary);
    margin-top: 0;
}

#custom-container-privacy .contact-info a {
    color: var(--brand-primary);
    text-decoration: none;
    font-weight: 600;
}

#custom-container-privacy .contact-info a:hover {
    text-decoration: underline;
}

/* Table of Contents */
#custom-container-privacy .toc {
    background: linear-gradient(135deg, #f8f9fb, #f5f5f8);
    border-radius: 0.75rem;
    padding: 2rem;
    margin-bottom: 3rem;
}

#custom-container-privacy .toc-title {
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--brand-dark);
    margin-bottom: 1rem;
}

#custom-container-privacy .toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

#custom-container-privacy .toc-list li {
    margin-bottom: 0.75rem;
}

#custom-container-privacy .toc-link {
    color: var(--brand-primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

#custom-container-privacy .toc-link:hover {
    gap: 0.75rem;
}

/* Responsive */
@media (max-width: 768px) {
    #custom-container-privacy .hero-title {
        font-size: var(--text-3xl);
    }

    #custom-container-privacy h2 {
        font-size: var(--text-xl);
    }

    #custom-container-privacy .content-wrapper {
        padding: 0 1rem;
    }
}
