/* static/css/pages/service_trailer_porch_light.css */

/* --- 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;
}

/* --- How to Order (Timeline) Section --- */
.how-to-order-section {
    max-width: 800px;
    margin: 3rem auto;
}

.timeline {
    position: relative;
    margin-top: 2rem;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    position: relative;
    margin-bottom: 2.5rem;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-item__connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 1.5rem;
}

.timeline-item__circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--brand-dark-blue);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    z-index: 1;
}

.timeline-item__line {
    width: 2px;
    height: 120px;
    background-color: #e0e0e0;
}

.timeline-item:last-child .timeline-item__line {
    display: none;
}

.timeline-item__content h3 {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.timeline-item__content p {
    margin-top: 0;
    color: var(--text-muted-color);
}