.section-2{
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    font-family: "Roboto", sans-serif;
    overflow: hidden;
    transition: all 0.5s ease;
}


.booking {
    text-align: center;
    overflow: hidden;
    transition: all 0.5s ease;
}

.booking h2 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: #003E65;
    font-family: "Monserrat", sans-serif;
    transition: all 0.5s ease;
}

.booking p {
    font-size: 1.2rem;
    color: #696969;
    margin-bottom: 2rem;
    transition: all 0.5s ease;
}

.booking-steps {
    position: relative;
    display: flex;
    justify-content: center; 
    gap: 2rem; 
    margin-bottom: 2rem;
    overflow: hidden;
    transition: all 0.5s ease;
}

.booking-step {
    position: relative;
    display: block;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    transition: all 0.5s ease;
}

.booking-step img {
    position: relative;
    max-width: 306px; 
    object-fit: contain;
    border-radius: 12px;
    margin-bottom: 0.5rem;
    transition: all 0.5s ease;
}

.booking-step h3 {
    font-size: 1.2rem;
    font-family: "monserrat", sans-serif;
    margin-bottom: 0.5rem;
    font-weight: 600;
    transition: all 0.5s ease;
}

.booking-step p {
    position: relative;
    font-size: 0.9rem;
    color: #000;
    max-width: 306px; 
    transition: all 0.5s ease;
}

.booking-button {
    display: inline-block;
    background-color: #ff6f00;
    color: white;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 50px;
    text-align: center;
    transition: background-color 0.3s;
    position: relative;
    transition: all 0.5s ease;
}

.booking-button:hover {
    background-color: #ff4500;
}

/* 320px */
@media screen and (min-width: 320px) {
    .booking {
        padding: 5px;
    }

    .booking h2 {
        font-size: 1.8rem;
    }
    .booking p {
        font-size: 1rem;
    }

    .booking-steps {
        flex-direction: column;
    }
    .booking-step {
        left: 0px;
    }
}
/* 375px */
@media screen and (min-width: 375px) {
    .booking {
        padding: 5px;
    }

    .booking h2 {
        font-size: 2rem;
    }
    .booking p {
        font-size: 1.1rem;
        width: 350px;
        margin: 0 auto;
    }

    .booking-steps {
        flex-direction: column;
        margin-top: 20px;
    }
}
/* 425px */
@media screen and (min-width: 425px) {
    .booking {
        padding: 5px;
    }

    .booking h2 {
        font-size: 2.5rem;
    }
    .booking p {
        font-size: 1.1rem;
        width: 400px;
        margin: 0 auto;
    }

    .booking-steps {
        flex-direction: column;
        margin-top: 20px;
    }
}
/* 768px */
@media screen and (min-width: 768px) {
    .booking {
        padding: 5px;
    }

    .booking h2 {
        font-size: 2.5rem;
    }
    .booking p {
        font-size: 1.1rem;
        width: 600px;
        margin: 0 auto;
    }

    .booking-steps {
        flex-direction: column;
        margin-top: 40px;
    }
}
/* 1024px */
@media screen and (min-width: 1024px) {
    .booking {
        padding: 5px;
    }

    .booking h2 {
        font-size: 3rem;
    }
    .booking p {
        font-size: 1.2rem;
        width: 600px;
        margin: 0 auto;
    }

    .booking-steps {
        flex-direction: row;
        margin-top: 40px;
    }
}