.services-hero {
    padding: 90px 0 40px;
    background: linear-gradient(135deg, #ffffff, #ececec);
}

.services-hero h1 {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 18px;
    color: #111;
}

.services-hero p {
    max-width: 720px;
    font-size: 1.1rem;
    color: #444;
}

.services-section {
    padding: 60px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: #fff;
    padding: 28px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.service-card h2 {
    font-size: 1.4rem;
    margin-bottom: 14px;
    color: #111;
}

.service-card p {
    color: #444;
    line-height: 1.7;
}

.services-cta {
    padding: 0 0 90px;
}

.cta-box {
    background: #111;
    color: #fff;
    padding: 40px;
    border-radius: 18px;
    text-align: center;
}

.cta-box h2 {
    font-size: 2rem;
    margin-bottom: 14px;
}

.cta-box p {
    margin-bottom: 22px;
    color: #ddd;
}

.cta-box .btn {
    background: #fff;
    color: #111;
}

@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .services-hero h1 {
        font-size: 2.2rem;
    }

    .cta-box {
        padding: 28px;
    }
}