body, html {
    animation: slide-up 1.3s ease-in;
}

h1 {
    font-family: 'Goldman', sans-serif;
    font-weight: 400;                /* Clean and consistent with other pages */
    margin-bottom: 100px;
    font-size: 47px;
    text-align: center;
}

h2, h3 {
    font-size: 30px;
}

@keyframes slide-up {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.content {
    color: black;
    padding: 40px;
    font-family: Arial, sans-serif;
    font-size: 28px;
    margin: 60px 100px;
}

p {
    text-align: justify;
}

/* ==========================================
   Mobile & Tablet Adaptation (≤800px)
   ========================================== */

@media (max-width: 800px) {
    h1 {
        font-size: 36px;
        margin-bottom: 60px;
    }

    h2, h3 {
        font-size: 26px;        /* slightly smaller subheadings */
    }

    .content {
        font-size: 20px;
        margin: 40px 15px;
        padding: 20px;
    }

    p {
        text-align: justify;
        hyphens: auto;          /* helps with justification on narrow screens */
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
    }

    body, html {
        /* keep the same animation, no change needed for mobile */
        animation: slide-up 1.3s ease-in;
    }
}
