.card-container{
    display:flex;
    flex-wrap:wrap;
    gap:20px;
    padding:20px;
    justify-content:center
}
.card{
    background-color:#fff;
    border:4px solid #fff;
    border-radius:15px;
    overflow:hidden;
    width:calc(28% - 20px);
    transition:border 0.3s,box-shadow 0.3s;position:relative;
    box-shadow:0 4px 8px rgba(0,0,0,.4)
}
@media screen and (max-width:768px){
    .card{
        width:calc(50% - 20px)
    }}
@media screen and (max-width:480px){
    .card{width:100%}
}
.card:hover{
    border-bottom:4px solid #008CBA
}
.image-container{
    overflow:hidden;
    width:100%;
    height:auto;
}
.image-container img{
    width:100%;
    height:100%;
    transition:transform 0.3s
}
.card:hover .image-container img{
    transform:scale(1.1)
}
.card-content{
    padding:20px
}
.card-title{
    font-size:24px;
    margin-bottom:10px;
    color:#333;
    color:#008CBA;
    font-weight:700
}
.card p{
    font-size:16px;
    color:#666
}
.card-footer{
    text-align:center;
    padding:10px
}
.book-now-button{
    display:inline-block;
    padding:10px 20px;
    background-color:#008CBA;
    color:#fff;
    text-decoration:none;
    border-radius:2px;
    transition:background-color 0.3s
}
.book-now-button:hover{
    background-color:#000
}
.section-title{
    font-size:40px;
    text-align:center;
    margin-bottom:20px;
    color:#008CBA;
    font-weight:700;
    letter-spacing:px
}