/* Services List Layout */
.services-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.service-item {
    display: flex;
    flex-direction: column;
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.service-item:last-child {
    border-bottom: none;
}

.service-item__header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 5px;
}

.service-item__title {
    font-size: 1.5rem;
    color: var(--color-white);
    margin: 0;
}

.service-item__price {
    font-size: 1.4rem;
    color: var(--color-gold);
    font-family: var(--font-heading);
    font-weight: 700;
}

.service-item__desc {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    margin: 0;
}

@media (max-width: 768px) {
    .service-item__header {
        flex-direction: row;
        /* Keep row even on mobile unless text is very long */
    }
}