* {margin: 0; padding: 0; box-sizing: border-box; font-family: "Poppins", sans-serif;}
    
.menu-section {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-wrap: wrap;
    margin-bottom:70px;
    padding-top: 130px;
}

.menu-left, .menu-right {
    width: 50%;
    height: 100%;
}

.slider {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 20px;
}

.big-image img {
    width: 100%;
    height: 50vh;
    object-fit: cover;
    border-radius: 10px;
    transition: 0.3s;
}

.thumbnails {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.thumbnails img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;
    border: 2px solid transparent;
}

.thumbnails img:hover {
    border-color: #007BFF;
}

.menu-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    text-align: center;
}

.menu-right h2 {margin-bottom: 15px; font-size: 2rem; color: #2c3e50;}
.menu-right p {margin-bottom: 20px; font-size: 1rem; color: #34495e;}
.menu-right a {
    padding: 10px 20px;
    background-color: #6D0510;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.menu-right a:hover {
    background-color: #865052;
}

@media(max-width: 992px) {
    .menu-left, .menu-right {
        width: 100%;
        height: auto;
    }

    .big-image img {
        height: 40vh;
    }

    .menu-section {
        height: auto;
        flex-direction: column;
        padding-top: 50px;
    }
}