/* =================================================================
   PRIVACY POLICY PAGE STYLES - Scoped to #custom-container-privacy
   ================================================================= */

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

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

/* Hero Section */
#custom-container-privacy .privacy-hero {
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-dark) 100%);
    padding: 100px 0 60px 0;
    text-align: center;
    position: relative;
}

#custom-container-privacy .hero-content {
    position: relative;
    z-index: 1;
}

#custom-container-privacy .privacy-hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: white;
}

#custom-container-privacy .last-updated {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

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

#custom-container-privacy .legal-section {
    margin-bottom: 3rem;
}

#custom-container-privacy .legal-section h2 {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--brand-dark);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--brand-light);
}

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

#custom-container-privacy .legal-section p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--brand-neutral);
    margin-bottom: 1.25rem;
}

#custom-container-privacy .legal-section ul,
#custom-container-privacy .legal-section ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

#custom-container-privacy .legal-section li {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--brand-neutral);
    margin-bottom: 0.75rem;
}

#custom-container-privacy .legal-section strong {
    font-weight: 600;
    color: var(--brand-dark);
}

#custom-container-privacy .contact-box {
    background: linear-gradient(180deg, #ffffff 0%, var(--brand-light) 100%);
    border: 1px solid var(--brand-light);
    border-radius: 0.75rem;
    padding: 2rem;
    margin-top: 2rem;
}

#custom-container-privacy .contact-box h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand-dark);
    margin-bottom: 1rem;
}

#custom-container-privacy .contact-info {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--brand-neutral);
}

#custom-container-privacy .contact-info a {
    color: var(--brand-primary);
    text-decoration: none;
    transition: color 0.3s;
}

#custom-container-privacy .contact-info a:hover {
    color: var(--brand-accent);
    text-decoration: underline;
}

/* Navigation */
#custom-container-privacy .policy-nav {
    background: var(--brand-light);
    padding: 1.5rem 0;
    margin-bottom: 3rem;
    position: sticky;
    top: 70px;
    z-index: 100;
}

#custom-container-privacy .nav-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

#custom-container-privacy .nav-link {
    color: var(--brand-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.3s;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
}

#custom-container-privacy .nav-link:hover {
    background: white;
    color: var(--brand-accent);
}

/* Responsive Design */
@media (max-width: 768px) {
    #custom-container-privacy .privacy-hero {
        padding: 80px 0 50px 0;
    }

    #custom-container-privacy .privacy-hero-title {
        font-size: 2rem;
    }

    #custom-container-privacy .legal-section h2 {
        font-size: 1.5rem;
    }

    #custom-container-privacy .policy-nav {
        position: static;
    }

    #custom-container-privacy .nav-links {
        gap: 1rem;
    }
}
