.rent-car-panel h2 {
    margin-bottom: 0.4rem;
}

.rent-car-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.rent-card {
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    display: flex;
    flex-direction: column;
}

.rent-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 117, 194, 0.1);
    border-color: #b8daf1;
}

.rent-card-header {
    background: var(--bg-soft);
    padding: 1.2rem;
    border-bottom: 1px solid var(--line);
}

.rent-card-header h3 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--text-900);
    line-height: 1.4;
}

.rent-card-body {
    padding: 1.2rem;
    flex-grow: 1;
}

.vehicle-rates {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.vehicle-rates li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.8rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px dashed var(--line);
}

.vehicle-rates li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.vehicle-type {
    font-weight: 600;
    color: var(--text-700);
    font-size: 0.95rem;
}

.vehicle-price {
    font-weight: 800;
    color: var(--sky-strong);
    font-size: 1.1rem;
    white-space: nowrap;
}

.rent-card-footer {
    padding: 1rem 1.2rem 1.2rem;
    text-align: center;
}

.rent-card-footer .btn {
    width: 100%;
    padding: 0.6rem;
    font-size: 0.9rem;
}

.custom-quote-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #eaf7ff 0%, #dff2ff 100%);
    border: 1px solid #b8daf1;
    border-radius: 24px;
    padding: 2rem 2.5rem;
    margin-top: 2rem;
    box-shadow: 0 10px 20px rgba(0, 117, 194, 0.05);
}

.custom-quote-banner .quote-text h3 {
    margin: 0 0 0.4rem 0;
    font-size: 1.3rem;
    color: var(--text-900);
}

.custom-quote-banner .quote-text p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-700);
}

.custom-quote-banner .quote-action {
    flex-shrink: 0;
    margin-left: 2rem;
}

.custom-quote-banner .btn {
    padding: 0.8rem 1.8rem;
    font-size: 1rem;
    border-radius: 999px;
    box-shadow: 0 6px 15px rgba(0, 169, 239, 0.2);
}

@media (max-width: 768px) {
    .custom-quote-banner {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .custom-quote-banner .quote-action {
        margin-left: 0;
        margin-top: 1.2rem;
        width: 100%;
    }

    .custom-quote-banner .btn {
        width: 100%;
    }
}

@media (max-width: 640px) {
    .rent-car-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .rent-card-header,
    .rent-card-body,
    .rent-card-footer {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .vehicle-rates li {
        align-items: flex-start;
    }
}
