/* PrivacyPolicy.css - Updated: more top padding as screen sizes decrease */
/* Consistent with other pages, better breathing room on smaller screens */

.content {
    margin-left: auto;
    margin-right: auto;
    width: 85%;
    max-width: 1200px;
    padding-top: 12%;                    /* Base for largest screens */
    text-align: left;
    box-sizing: border-box;
}

.last-updated {
    text-align: center;
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
}

h2 {
    margin-top: 50px;
    margin-bottom: 20px;
    font-size: 36px;
    text-align: center;
}

p {
    margin-bottom: 30px;
    line-height: 1.8;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

strong {
    color: #ffcc66;
}

/* ==================== MEDIA QUERIES - More top padding on smaller screens ==================== */

@media (max-width: 425.9px) {
    .content {
        padding-top: 33%;
        width: 75%;
    }

    h2 {
        font-size: 28px;
        margin-top: 40px;
    }

    p {
        font-size: 16px;
        line-height: 1.7;
    }

    .last-updated {
        font-size: 16px;
    }
}

@media only screen and (min-width: 426px) and (max-width: 768px) {
    .content {
        padding-top: 24%;
        width: 75%;
    }

    h2 {
        font-size: 32px;
    }

    p {
        font-size: 17px;
    }
}

@media only screen and (min-width: 769px) and (max-width: 1023px) {
    .content {
        padding-top: 18%;
        width: 75%;
    }

    h2 {
        font-size: 34px;
    }
}

@media only screen and (min-width: 1024px) and (max-width: 1440px) {
    .content {
        padding-top: 15%;
        width: 75%;
    }

    h2 {
        font-size: 36px;
    }
}

@media only screen and (min-width: 1441px) {
    .content {
        padding-top: 12%;                /* Base value for largest screens */
    }

    h2 {
        font-size: 36px;
    }
}