/* ======================================
   Legal Pages (Terms, Privacy, etc.)
   ====================================== */
.legal-page {
    width: 90%;
    max-width: 900px;
    margin: 60px auto;
    padding: 40px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    color: #333;
    font-size: 1rem;
    line-height: 1.7;
}

.legal-page h2 {
    font-family: "Roboto", sans-serif;
    font-size: 1.8rem;
    color: #0073e6;
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-page h2:first-of-type {
    font-size: 2.2rem;
    text-align: center;
    margin-top: 0;
}

.legal-page #update {
    font-size: 0.85rem;
    color: #777;
    margin-bottom: 25px;
    text-align: center;
}

.legal-page p {
    margin-bottom: 18px;
}

.legal-page a {
    color: #0073e6;
    text-decoration: none;
    font-weight: 500;
}
.legal-page a:hover {
    text-decoration: underline;
}

/* Mobile adjustments */
@media screen and (max-width: 650px) {
    .legal-page {
        padding: 25px 20px;
        font-size: 0.95rem;
    }

    .legal-page h2 {
        font-size: 1.5rem;
    }

    .legal-page h2:first-of-type {
        font-size: 1.9rem;
    }
}