.booking-section {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    max-width: 900px;
    margin: 0 auto 40px auto;
    text-align: center;
}

.booking-title {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.booking-container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.booking-card {
    background: white;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 30px;
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.booking-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: bold;
}

.card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
    text-align: left;
    flex-grow: 1;
}

.card-features li {
    margin: 25px 0;
    padding-left: 25px;
    position: relative;
    font-size: 0.95rem;
    line-height: 1.4;
}

.card-features li.li-plus::before {
    content: "✓";
    position: absolute;
    left: 0;
    font-weight: bold;
}

.card-features li.li-moins::before {
    content: "◇";
    position: absolute;
    left: 0;
    font-weight: bold;
}

.direct-li::before {
    color: var(--direct-color);
}

.airbnb-li::before {
    color: var(--airbnb-color);
}

.terms-note {
    font-size: 0.8rem;
    color: #666;
    margin-top: 15px;
    font-style: italic;
}