.services-hero {
    background: linear-gradient(135deg, #eef5f0 0%, #ffffff 100%);
    padding: 40px 0;
    text-align: center;
    margin-bottom: 20px;
}

.services-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 12px;
    color: #0b2b21;
}

.service-section {
    padding: 60px 0;
    border-bottom: 1px solid #e2ede6;
}

.service-section:last-child {
    border-bottom: none;
}

.service-title-wrapper {
    background-color: var(--primary-dark);
    padding: 32px 0;
    margin-bottom: 40px;
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.service-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-yellow);
    letter-spacing: 1px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    text-align: center;
}

.service-title-icon {
    font-size: 2.8rem;
}

.service-description {
    font-size: 1.15rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 32px;
    max-width: 90%;
}

.service-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-green);
    margin: 32px 0 20px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 16px;
    margin-bottom: 20px;
}

.feature-item-large {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: #f8fbf9;
    border-radius: 16px;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text-dark);
    transition: all 0.2s;
}

.feature-item-large:hover {
    background: #eef5f0;
    transform: translateX(5px);
}

.feature-icon-large {
    font-size: 1.5rem;
    color: var(--primary-green);
}

.service-list-large {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 12px;
}

.service-list-large li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.05rem;
    color: var(--text-muted);
    padding: 10px 0;
}

.service-list-large li::before {
    content: "▹";
    color: var(--primary-green);
    font-size: 1.1rem;
}

.service-cta {
    margin-top: 40px;
    text-align: center;
    padding: 32px;
    background: #f0f6f2;
    border-radius: 32px;
}

.service-cta p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}