/* static/css/pages/service_wall_decals.css */

/*
    Styling for the Custom Wall Decals page.
    This page reuses global styles. The quality-list from the car decals page
    can be reused or its styles made global if they aren't already.
*/

/* --- 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;
    font-size: 1.1rem;
    line-height: 1.6;
}

.quality-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--success-color);
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1.2;
}