body.contact-body {
    margin-top: 150px;
    padding: 0;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    flex-direction: row;
    background-color: #f8f1f1f8;
}
.team-member {
    flex-grow: 1;
    text-align: center;
    margin: 20px;
    margin-bottom: 50px;
    border: black 2px solid;
    border-radius: 15px;
    background-color: #fff;
}
.team-member img {
    width: 400px;
    height: 400px;
}
.team-member h2 {
    margin-top: 10px;
}
.team-member p {
    margin-top: 5px;
}
.contact-button {
    font-size: large;
    background-color: #FF5757;
    color: #fff;
    border: black 2px solid;
    width: 120px;
    height: 60px;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    margin-bottom: 50px;
}
.contact-button:hover {
    background-color: #d93030;
}
.contact-info {
    display: none;
    margin-top: 10px;
}
.title-team {
    font-size: xx-large;
    width: 100%;
    text-align: center;
}
.container-btn-book {
    margin-bottom: 100px;
}

/* Responsive design for screens smaller than 640px */
@media only screen and (max-width: 640px) {
    body.contact-body {
        flex-direction: column;
        align-items: center;
    }
    .team-member {
        flex-basis: 100%;
        margin: 10px 0;
    }
    .team-member img {
        width: 100%;
        height: auto;
    }
    .contact-button {
        width: 100%;
        padding: 10px;
    }
}

