/* static/css/pages/service_leather_cleaning.css */

/*
    Styling for the Leather Seat Cleaning landing page.
    This page reuses many global styles like .service-detail-layout,
    .value-prop-grid, and .process-section. We only need to add
    a few specific tweaks.
*/

/*
    The .why-wrap-grid from the car wraps page is a perfect fit here.
    If these styles aren't global, copy them here from service_car_wraps.css.
*/
.why-wrap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.why-wrap-grid .value-prop {
    text-align: center;
    background-color: #f9f9f9;
    padding: 2rem;
    border-radius: 8px;
}

.value-prop__icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.why-wrap-grid h3 {
    margin-top: 0;
    color: var(--brand-dark-blue);
}

/* --- Pricing List for Sidebar --- */
.pricing-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.pricing-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-light-color);
}

.pricing-list li:last-child {
    border-bottom: none;
}