.services {
    padding: 3rem 1rem;
    text-align: center;
    background-color: #fff;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
}

.services h2 {
    font-size: 2.5rem;
    font-weight: bold;
}

.services-intro {
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto 3rem auto;
    color: #333;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 2rem;
}

.service-card {
    flex: 1 1 250px;
    max-width: 280px;
    background: #fff;
    padding: 2rem 1rem;
    border-radius: 12px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.service-card img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 1rem auto;
    object-fit: contain;
    aspect-ratio: 1 / 1;
    max-height: 120px;
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: bold;
    margin: 1rem 0;
}

.service-card p {
    font-size: 1rem;
    color: #333;
    line-height: 1.5;
}

@media (min-width: 900px) {
    .services .underline {
        width: 62%;
    }
}