.services-section {
    padding: 50px 40px;
    background: #f8f6f2;
}

.services-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.services-intro {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 35px auto;
    line-height: 1.6;
}

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

.service-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.service-card img {
    width: 100%;
    height: 230px;
    object-fit: contain;
    border-radius: 0;
}

.service-card-body {
    padding: 22px;
}

.service-card-body h3 {
    margin-top: 0;
    font-size: 1.4rem;
}

.service-card-body p {
    line-height: 1.6;
}

.guide-price {
    font-weight: bold;
    color: #6b4f2a;
    font-size: 1.1rem;
}

.repair-cta {
    text-align: center;
    padding: 55px 30px;
    background: #e8dfd2;
}

.repair-cta h2 {
    font-size: 2rem;
}

.repair-cta p {
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.6;
}

@media (max-width: 980px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .services-section {
        padding: 35px 20px;
    }
}