/* css/pages/privacy.css */

/* Using similar base styles as about.css for consistency */
.page-main-content {
    padding: 2rem 0 3rem 0;
}

.privacy-policy-article {
    /* Specific wrapper for privacy page content */
    background-color: var(--white-color, #fff);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow-light);
}

@media (min-width: 768px) {
    .privacy-policy-article {
        padding: 2rem 2.5rem;
    }
}

.page-header {
    /* Copied from about.css for consistency */
    text-align: center;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color, #eee);
}

.page-header h1 {
    font-size: clamp(2rem, 6vw, 2.8rem);
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.page-header h1 .fas {
    margin-right: 0.75rem;
    font-size: 0.8em;
}

.page-header .page-subtitle {
    font-size: clamp(1.1rem, 3vw, 1.3rem);
    color: var(--text-muted);
    font-style: italic;
}

.content-section.legal-text {
    /* Specific class for legal text sections */
    padding: 1.5rem 0;
}

.content-section.legal-text:not(:last-child) {
    border-bottom: 1px solid #f0f0f0;
    /* Light separator */
}

.legal-text h2 {
    font-size: clamp(1.3rem, 3.5vw, 1.7rem);
    color: var(--dark-color);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.3rem;
    border-bottom: 1px solid var(--border-color, #ddd);
}

.legal-text h3 {
    font-size: clamp(1.1rem, 3vw, 1.4rem);
    color: var(--dark-color);
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
    /* Semibold */
}

.legal-text p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: var(--text-color);
    font-size: 0.95rem;
}

.legal-text ul {
    list-style: disc;
    padding-left: 25px;
    /* Indent list items */
    margin-bottom: 1rem;
}

.legal-text ul li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
    font-size: 0.95rem;
}

.important-notice {
    background-color: #fff3cd;
    /* Light yellow */
    color: #856404;
    /* Dark yellow/brown text */
    border: 1px solid #ffeeba;
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius);
    margin: 1.5rem 0;
}

.important-notice p {
    margin: 0;
    font-size: 0.9rem;
}

.important-notice strong {
    font-weight: bold;
}