/* static/css/pages/service_car_decals.css */

/*
    Styling for the Custom Car Decals landing page.
*/

/*
    The .why-wrap-grid from the car wraps page can be reused
    for the .value-prop-grid here if its styles are made global.
    If not, copy them here.
*/
.value-prop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.value-prop-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;
}

.value-prop-grid h3 {
    margin-top: 0;
    color: var(--brand-dark-blue);
}

/* --- Quality Section --- */
.quality-section {
    margin-top: 3rem;
}

.quality-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.quality-list li {
    position: relative;
    padding-left: 35px; /* Space for the icon */
    font-size: 1.1rem;
    line-height: 1.6;
}

.quality-list li::before {
    content: '✓'; /* Checkmark icon */
    position: absolute;
    left: 0;
    top: 0;
    color: var(--success-color);
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1.2;
}