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

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

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

@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-top: 60px;
    margin: 60px 100px;
}

p {
    text-align: justify;
}

.update-info {
    text-align: right;
    margin-top: 80px;
    margin-bottom: 60px;
}

/* Style for Bold Headings */
.bold-heading {
    font-weight: bold;
}

/* Margin for Bullet Points */
.list-item {
    margin-bottom: 10px;
}

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

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

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

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

    p {
        text-align: justify;
        hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
    }

    .update-info {
        margin-top: 60px;
        margin-bottom: 40px;
        text-align: center;     /* better readability on small screens */
        font-size: 16px;        /* slightly smaller if needed */
    }

    .list-item {
        margin-bottom: 14px;    /* a bit more breathing room on mobile */
    }

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