@media (max-width: 768px) {
    /* ============================ */
    /* ========== NAVBAR ========== */
    /* ============================ */
    nav {
        padding: 1rem 1.5rem;
    }

    nav h1 {
        font-size: clamp(0.95rem, 9vw, 1.25rem);
        text-wrap: nowrap;
    }

    .nav-logo {
        display: none;
    }

    .lang-wrapper {
        padding: 3px 10px;
    }

    .lang-wrapper select {
        font-size: 0.75rem;
    }

    /* ================================== */
    /* ========== LANDING PAGE ========== */
    /* ================================== */
    .landingPage{
        margin-top: 0 !important;
        padding: 0 1rem;
        padding-top: 3rem;
        height: fit-content;
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .left {
        width: 100%;
        text-align: center;
        padding: 0 0.5rem;
        box-sizing: border-box;
    }

    .left h1{
        margin: 1.5rem 0 1rem 0;
        font-size: clamp(2rem, 8vw, 3rem);
        text-align: center;
    }

    /* Center the green accent line under the heading */
    .landingHeader::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .left button{
        display: none;
    }

    .heroBookBtn {
        display: none;
    }

    .slider-wrapper{
        width: 100%;
    }

    .carouselText {
        text-align: center;
    }

    .subCarousel {
        margin-top: 0.75rem;
    }

    .button_container{
        padding-bottom: 20px;
    }

    .mobileButton {
        display: block;
        margin: 0.5rem auto 3rem;
        padding: 14px 40px;
        background-color: var(--mainGreen);
        border: none;
        border-radius: 50px;
        box-shadow: 0 4px 20px rgba(82, 122, 87, 0.4);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        font-size: inherit;
    }
    .mobileButton a {
        color: white;
        text-decoration: none;
        font-size: 1rem;
        font-weight: 600;
        letter-spacing: 0.06em;
    }
    .mobileButton:active {
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(82, 122, 87, 0.5);
    }
    /* ================================== */
    /* ========== ABOUT US ============== */
    /* ================================== */
    .profile{
        width: 90%;
        padding: 1.5rem;
        box-sizing: border-box;
    }

    .profileContainer {
        grid-template-columns: 1fr;
        width: 100%;
        padding: 0 1rem;
        box-sizing: border-box;
    }

    .profileContainer .profile:last-child {
        grid-column: auto;
    }

    .middleRow {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
        max-width: 100%;
    }
    .middleRow .skill {
        flex: 1 1 40%;
        min-width: 120px;
        text-align: center;
    }

    .longDescription {
        width: 90%;
    }

    /* ================================== */
    /* ========== ABOUT US ============== */
    /* ================================== */
    .profile .topRow img{
        height: 100px;
        width: 100px;
        object-fit: cover;
        display: block;
        margin: 0 auto;
    }

    .gridWrapper {
        grid-template-columns: 1fr;
        max-width: 100%;
        padding: 0 1rem;
        box-sizing: border-box;
    }

    .cardBox {
        width: 100%;
    }

    .grid {
        width: 100%;
        max-width: 100%;
        height: 220px;
    }

    /* ================================== */
    /* ============= FAQ ================ */
    /* ================================== */
    .faq_section {
        width: 80%;
        margin: 0 auto;
        text-align: center; 
    }

    /* ============================================ */
    /* ============= PHOTO GALLERY ================ */
    /* ============================================ */

        .grid-wrapper {
            grid-template-columns: 1fr; 
            grid-auto-rows: auto; 
        }
    
        .grid-wrapper .wide,
        .grid-wrapper .tall,
        .grid-wrapper .big {
            grid-column: auto; 
            grid-row: auto;
        }
}