/*
 * Styles for the three policy pages.
 *
 * Lifted out of the inline <style> block the pre-migration layout.php
 * carried, so the markup is unchanged but the CSS is cacheable.
 */
.policy-header {
    background: linear-gradient(135deg, #1d2d44 0%, #0d1b2a 100%);
    color: #fff;
    padding: 50px 0;
    margin-bottom: 40px;
}
.policy-header h1 {
    font-size: 2.25rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
}
.policy-content {
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    margin-bottom: 60px;
    font-family: 'Public Sans', sans-serif;
}
.policy-content h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1d2d44;
    margin-top: 32px;
    margin-bottom: 14px;
    border-bottom: 2px solid #f1f3f5;
    padding-bottom: 8px;
}
.policy-content h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-top: 18px;
    color: #333;
}
.policy-content p, .policy-content li {
    line-height: 1.75;
    color: #495057;
    font-size: 0.98rem;
}
.badge-update {
    background: rgba(255, 255, 255, 0.15);
    color: #f1f3f5;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    display: inline-block;
}
.contact-box {
    background: #f8f9fa;
    border-left: 4px solid #e63946;
    padding: 20px;
    border-radius: 6px;
    margin-top: 25px;
}
