    .food-categories {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 2rem;
        margin-bottom: 2rem;
    }
    .category-menu {
        background: #fff;
        border-radius: 1rem;
        box-shadow: 0 2px 8px rgba(0,0,0,0.07);
        padding: 1.5rem 1rem;
        flex: 1 1 300px;
        max-width: 350px;
        min-width: 220px;
        text-align: center;
        margin: 0.5rem;
    }
    .category-menu h2 {
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
        color: #212529;
        font-weight: 700;
    }
    .menu-description {
        color: #6c757d;
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    .menu-images img {
        max-width: 100%;
        height: auto;
        border-radius: 0.75rem;
        margin-bottom: 0.5rem;
        box-shadow: 0 1px 4px rgba(0,0,0,0.08);
        transition: transform 0.3s ease;
    }

    .menu-images img:hover {
        transform: scale(1.1);
        cursor: pointer;
    }
    /* Responsive adjustments */
    @media (max-width: 768px) {
        .food-categories {
            flex-direction: column;
            gap: 1rem;
        }
        .category-menu {
            max-width: 100%;
            min-width: 0;
            padding: 1rem 0.5rem;
        }
        .container-content {
            padding: 0.5rem;
        }
        .back-to-top {
            bottom: 16px;
            right: 16px;
            width: 40px;
            height: 40px;
            font-size: 1.5rem;
        }
    }