@media (max-width: 480px) {

    /* Navigation */
    .nav-container {
        height: 50px;
    }

    .nav-left {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        flex: 1;
        margin-top: 0;
        padding-left: 16px;
        padding-top: 16px;
        position: relative;
    }

    .nav-menu {
        position: absolute;
        flex-direction: column;
        gap: 20px;
        background-color: #FFF8EE;
        top: 49px;
        left: 0;
        width: 100vw;
        align-items: flex-start;
        padding-right: 16px;
        z-index: 3;
        padding: 16px;
        opacity: 0.9;
        display: none;
    }

    .nav-menu.visible {
        display: flex;
    }

    .logo-image {
        max-width: 50%;
        margin-top: 4px;
    }

    .hamburger-menu {
        display: block;
        position: absolute;
        z-index: 4;
        left: 16px;
        top: 16px;
    }

    /* Sections */
    section {
        min-height: 100px;
        margin-bottom: 30px;
    }

    .section-title {
        font-size: 28px;
        font-weight: 200;
        text-align: center;
    }

    .section-subtitle {
        font-size: 18px;
        font-weight: 200;
        text-align: center;
    }

    /* Hero Section */
    .hero-container {
        background-size: cover;
        height: 329px
    }

    .hero-button-container {
        margin-top: 0;
    }

    /* Books Section */
    .books-container {
        background-color: #fff;
        padding: 24px 16px;
    }

    .books-grid {
        flex-direction: column;
        margin-top: 24px;
        width: 75vw;
        gap: 60px;
    }

    .book-card {
        max-width: initial;
    }

    .order-links-container {
        gap: 16px;
    }

    .order-link {
        width: 80px;
    }

    .order-link img {
        width: 80px;
    }

    .dialog img {
        max-height: initial;
    }

    .dialog {
        position: absolute;
        top: initial;
        left: initial;
        transform: initial;
    }

    /* About Section */
    .nekuda {
        overflow: auto;
    }

    .nekuda .section-subtitle {
        font-size: 22px;
    }

    .about-container {
        width: 75vw;
        flex-direction: column;
    }

    .about-inbar {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 16px;
        position: relative;
        right: 0;
        top: -27px;
        line-height: 1.5;
    }

    /* Updates Section */
    .updates-container {
        width: 90vw;
    }

    .form {
        width: 100%;
        margin: initial;
        align-items: initial;
        justify-content: initial;
        padding-bottom: 8px;
    }

    .form-input-group {
        width: 100%;
        max-width: initial;
        align-items: center;
        justify-content: center;
        padding: 0 8px;
    }

    .form input {
        width: 150px;
    }

    /* Contact Section */
    .contact-container img {
        max-width: 80px;
    }

}