.tour-card {
    max-width: 70%;
    width: auto;
    background-color: #EFEDEA;
    border: 1px solid #ddd;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    text-align: center;
    margin: 20px auto;
    padding: 25px;
    border-radius: 16px;
    overflow: hidden;
}

.tour-card__title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 8px;
    color: #333;
}

.tour-card__subtitle {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #007bff;
}

.tour-card__image {
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: block;
}

.tour-card__description {
    margin-top: 15px;
    font-size: 14px;
    color: #333;
    text-align: left;
}

.tour-card__description ul,
.tour-card__details ul {
    padding: 0;
    margin: 0;
    list-style-type: none !important;
}

.tour-card__description li,
.tour-card__details li {
    margin-bottom: 6px;
    padding-left: 15px;
    position: relative;
    list-style: none !important;
}

.tour-card__description li::before,
.tour-card__details li::before {
    content: "•" !important;
    position: absolute;
    left: 0;
    color: #007bff;
    display: inline !important;
}

.tour-card__price {
    margin-top: 15px;
    font-size: 22px;
    font-weight: bold;
    color: #000;
}

.tour-card__buttons {
    text-align: center;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.tour-card__details {
    margin-top: 15px;
    font-size: 14px;
    color: #444;
    text-align: left;
    background: #f9f9f9;
    padding: 15px;
    border-radius: 10px;
    border: 1px solid #ddd;
    line-height: 1.6;
}

.tour-card__details ul {
    margin: 10px 0;
}

@media (max-width: 768px) {
    .tour-card {
        max-width: 95%;
        padding: 15px;
    }
    .tour-card__image {
        height: 200px;
    }
}