.privacy-section {
    background: rgba(120, 190, 216, 0.8); /* #78BED8CC */
    padding: 70px 0 80px;
    font-family: 'Metropolis', sans-serif;
    text-align: center;
}

.privacy-title {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 10px;
}

.privacy-subtitle {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 30px;
}

.privacy-image img {
    width: min(90vw, 32em); /* responsive: cap at ~32em, otherwise fit viewport */
    height: auto;
    display: inline-block;
}

@media (max-width: 575.98px) {
    .privacy-section {
        padding: 40px 24px;
    }

    .privacy-title {
        font-size: 20px;
        font-weight: 600;
        line-height: 24px;
        margin-bottom: 24px;
    }

    .privacy-subtitle {
        margin-bottom: 24px;
    }
}


