.service-section {
    padding: 30px 0;
}

.service-section:nth-child(even) {
    background-color: var(--neutral-base-3);
}

.service-row {
    gap: 25px;
}

.service-image {
    max-width: 320px;
    aspect-ratio: 4/3;
}

.service-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.service-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--neutral-base-3);
    color: var(--accent-base);
    font-size: 1.4rem;
    margin-right: 15px;
    border-radius: 50%;
    flex-shrink: 0;
}

.inverted .service-icon {
    background-color: white;
}

.service-title h2 {
    font-size: 1.4rem;
    margin-bottom: 0;
    font-weight: 600;
}

.service-intro {
    font-size: 0.95rem;
    line-height: 1.4;
    margin-bottom: 12px;
    max-width: 95%;
}

.service-items-list {
    margin-top: 15px;
    gap: 8px;
}

.item-spacer {
    height: 8px;
}

.service-item-summary {
    margin-bottom: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    padding: 12px 16px;
}