/* privacy.css - Styles specific to the privacy policy page */

.content-area {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem;
}

.page-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--bg-light);
}

.page-header h1 {
    color: var(--primary-teal);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    line-height: 1.2;
}

.page-header .subtitle {
    color: var(--text-medium);
    font-size: 1.1rem;
}

.effective-date {
    background: linear-gradient(135deg, var(--bg-light) 0%, #f0f4f8 100%);
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-green);
    margin-bottom: 2rem;
    text-align: center;
}

.effective-date p {
    margin: 0;
    font-weight: 500;
}

.section {
    margin-bottom: 3rem;
}

.section h2 {
    color: var(--primary-teal);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-green);
    font-weight: 600;
}

.section h3 {
    color: var(--accent-navy);
    font-size: 1.3rem;
    margin: 1.5rem 0 0.75rem 0;
    font-weight: 600;
}

.section h4 {
    color: var(--primary-teal);
    font-size: 1.1rem;
    margin: 1rem 0 0.5rem 0;
    font-weight: 600;
}

.section p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.section ul {
    margin: 1rem 0 1rem 2rem;
    line-height: 1.6;
}

.section li {
    margin-bottom: 0.5rem;
}

.highlight-box {
    background: linear-gradient(135deg, var(--accent-navy), var(--navy-medium));
    color: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    margin: 2rem 0;
}

.highlight-box h4 {
    color: var(--primary-green);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-info {
    background: linear-gradient(135deg, var(--primary-teal), #378184);
    color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
}

.contact-info h3 {
    color: var(--white);
    margin-bottom: 1rem;
}

.contact-info ul {
    list-style: none;
    margin: 0;
}

.contact-info li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.contact-info li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: bold;
}

.key-points {
    background: linear-gradient(135deg, var(--primary-green), var(--green-light));
    color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
}

.key-points h3 {
    color: var(--white);
    margin-bottom: 1rem;
}

.key-points ul {
    list-style: none;
    margin: 0;
}

.key-points li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.key-points li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--white);
    font-weight: bold;
}

.back-link {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--bg-light);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .content-area {
        padding: 2rem;
        margin: 1rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
        line-height: 1.15;
    }
    
    .section h2 {
        font-size: 1.5rem;
    }
    
    .section h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .content-area {
        padding: 1.5rem;
    }
    
    .page-header h1 {
        font-size: 1.75rem;
        line-height: 1.1;
    }
    
    .section h2 {
        font-size: 1.3rem;
    }
}