@media (max-width: 768px) {

    html, body {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 0 !important;
        overflow-x: hidden;
    }


    button, h1, h2, h3 {
        font-family: "Francois One", sans-serif;
    }

    /* --- ONBOARDING PAGE STYLE --- */

    .onboard-wrapper {
        width: 100vw;
        height: 100vh;
        overflow: hidden;
        background: black;
        color: white;
    }

    .onboard-slider {
        display: flex;
        width: 300vw; /* 3 screens */
        height: 100%;
        transition: transform 0.5s ease;
    }

    .onboard-screen {
        width: 100vw;
        height: 100vh;
        padding: 2rem 1.5rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        background: black;
        color: white;
    }

    /* Circle image */
    .onboard-img {
        width: 80%;
        max-width: 350px;
        aspect-ratio: 1 / 1;
        border-radius: 50%;
        object-fit: cover;
        margin-bottom: 2rem;
        box-shadow: 0 0 20px rgba(133, 133, 133, 0.6);
    }

    /* Title */
    .onboard-title {
        font-family: "Francois One", sans-serif;
        font-size: 2.75rem;
        margin-bottom: 1rem;
    }

    /* Description text */
    .onboard-text {
        font-family: "Figtree", sans-serif;
        font-size: 1.15rem;
        line-height: 1.45;
        max-width: 90%;
        margin-bottom: 2.5rem;
    }

    /* NEXT button */
    .next-btn {
        background: #F76902;
        color: white;
        border: none;
        padding: 5px 0;
        width: 70%;
        max-width: 260px;
        border-radius: 12px;
        font-size: 1.5rem;
        font-family: "Francois One", sans-serif;
        letter-spacing: 0.5px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    /* Arrow spacing */
    .next-btn::after {
        content: "→";
        margin-left: 8px;
    }

    .btn-row {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        width: 100%;
    }

    .cta-btn {
        display: flex;
        justify-content: center;
        align-items: center;
        background: #F76902;
        color: white;
        border: none;
        padding: 5px 0;
        width: 70%;
        max-width: 260px;
        border-radius: 12px;
        font-size: 1.5rem;
        font-family: "Francois One", sans-serif;
        letter-spacing: 0.5px;
        text-decoration: none;
    }

    .cta-btn.secondary {
        background: #6c757d;
    }


}