/* Media Query for 768px and below */
@media screen and (max-width: 768px) {
    /* Adjust Hero Image */
    #hero-image-top, #hero-image-middle {
        height: 60vh;
    }

    /* Navigation Styles */
    nav ul {
        display: none;
    }

    .hamburger-icon {
        display: block;
        position: absolute;
        top: 10px;
        right: 10px;
        font-size: 30px;
        cursor: pointer;
    }

    .menu-toggle:checked + .hamburger-icon + nav ul {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 50px;
        right: 10px;
        background-color: white;
        border: 1px solid #ddd;
        padding: 10px;
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    }

    nav ul li {
        margin: 10px 0;
    }

    /* Text Box Adjustments */
    #text-box-top {
        bottom: 5%;
        left: 5%;
        width: 90%;
        max-width: 350px;
        padding: 15px;
    }
}

/* Media Query for 480px and below */
@media screen and (max-width: 480px) {
    #hero-image-top, #hero-image-middle {
        height: 50vh;
    }

    /* Text Box Adjustments */
    #text-box-top {
        bottom: 5%;
        left: 5%;
        width: 90%;
        max-width: 300px;
        padding: 10px;
    }
}
