.container {
    max-width: 100%;
    margin: 20px auto;
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    grid-gap: 20px;
}

.package {
    border: 1px solid #ccc;
    box-sizing: border-box;
    position: relative;
    border-radius: 10px;
    background-color: #f2f2f2;
}

.package-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 10px;
}

.one {
    display: flex;
    align-items: center;
    margin: 10px;
}

.one p {
    font-size: small;
    color: #8f8f8f;
}

.one img {
    width: 15px;
}

.package-image {
    position: relative;
    height: 200px;
}

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}

.package-price {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: rgba(255, 255, 255, 0.7);
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: bold;
}

.review-image {
    height: 20px;
    margin-right: 10px;
}

.package-duration {
    margin: 0;
    padding: 5px 10px;
    background-color: #f0f0f0;
    border-radius: 20px;
    font-weight: bold;
    color: #333;
}

.mgn10 {
    margin: 10px;
}

h2 {
    font-size: 18px;
    color: #2f2f2f;
}

.dashed {
    border-top: 2px dashed #dcdcde;
    margin-left: 10px;
    margin-right: 10px;
}

hr.solid {
    border-top: 1px solid #dcdcde;
    margin-left: 10px;
    margin-right: 10px;
}

.bookNow {
    background-color: #c8aa00;
    border: none;
    color: white;
    text-align: center;
    display: inline-block;
    font-size: 12px;
    font-weight: bold;
    border-radius: 10px;
    cursor: pointer;
    padding: 10px 30px;
    letter-spacing: 0.2em;
}

.bookNow:hover {
    background-color: #1b7d75;
}

.call {
    border-color: #c8aa00;
    color: #c8aa00;
    text-align: center;
    display: inline-block;
    font-size: 16px;
    font-weight: bold;
    border-radius: 10px;
    cursor: pointer;
    padding: 6px 10px;
}

.call:hover {
    background-color: #1b7d75;
    border-color: #1b7d75;
    color: white;
}

@media screen and (max-width: 768px) {
    .container {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }


}