/* --- SHARED POLICIES CSS --- */

.policy-card {
    border-color: #e2e8f0 !important;
}

.policy-block {
    margin-bottom: 32px;
}

.policy-block h4 {
    font-family: 'DM Sans', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #0c0e1b;
    margin-bottom: 12px;
}

.policy-block p {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    color: #4a4a52;
    line-height: 1.7;
}

/* Links inside policy text */
.policy-block a {
    transition: opacity 0.3s ease;
}
.policy-block a:hover {
    opacity: 0.8;
}

/* --- MOBILE RESPONSIVE TWEAKS --- */
@media (max-width: 767.98px) {
    .policy-block h4 {
        font-size: 18px;
    }
    .policy-block p {
        font-size: 14px;
    }
    .policy-card {
        padding: 24px !important;
    }
}