.services-overview {
    background-color: var(--bg-primary);
    /* Or stick to primary, maybe a subtle pattern */
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-group {
    background: var(--bg-secondary);
    border-radius: var(--radius-card);
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.service-group-title {
    color: var(--accent-teal);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Alternate title color for variety */
.service-group:nth-child(2) .service-group-title {
    color: var(--accent-violet);
}

.service-group:nth-child(3) .service-group-title {
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.service-list li {
    position: relative;
    padding-left: 1.5rem;
    color: var(--text-muted);
}

.service-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--text-main);
    /* or accent */
}

.center-cta {
    text-align: center;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}