.contents-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    width: 60%;
    margin: 10px auto;
    margin-top: 50px;
    margin-bottom: 50px;
}
.contents-container h2{
    color: rgba(47, 143, 47, 0.979);
    font-weight: bold;
    margin-top: 15px;
}
.package-cards{
    display: flex;
    flex-wrap: wrap;
    left: 50px;
    width: 90%;
    gap: 30px;
    padding: 10px;
    padding-left: 113px;
}
 
.card {
    background-color: #fff;
    width: 250px;
    height: 320px;
    border-radius: 5px;
    box-shadow: 0 5px 5px rgba(0, 0, 1, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover{
    transform: scale(1.02);
    box-shadow: 0 5px 10px rgba(26, 37, 25, 0.568);
}
.card-image{
    width: 95%;
    height: 60%;
    margin: 5px auto;
    border-radius: 5px;
}
.card-image img{
    border-radius: inherit;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.card-contents{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #fff;
}
.card-contents h3,
.card-contents h4{
    background-color: #fff;
    font-weight: bold;
}
.card-contents span{
    color: black;
    font-size: 14px;
}
.book-btn{
    background-color: #00520A;
    color: white;
    width: 95px;
    margin-top: 5px;
    padding: 5px;
    border: none;
    border-radius: 15px;
    transform: scale(1.05);
    transition: background-color 0.2s ease, transform 0.1s ease;
}
.book-btn:hover{
    cursor: pointer;
    background-color: #9c280b;
    color: white;
    transform: scale(1.1);
}