body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
}

.services-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: auto;
}

.section-title {
    text-align: center;
    font-size: 28px;
    color: #00796B;
    margin-bottom: 10px;
    font-weight: 500;
}

.section-title2 {
    text-align: center;
    font-size: 32px;
    color: #00796B;
    margin-bottom: 40px;
    font-weight: 700;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 30px;
    justify-items: center;
}

.service-item {
    text-align: center;
    text-decoration: none;
    color: #333;
}

.icon {
    width: 120px;
    height: 120px;
    background-color: #e1f2f1;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.icon img {
    width: 70%;
    height: 70%;
    object-fit: contain;
}

.service-title {
    font-size: 16px;
    font-weight: 600;
    color: #00796B;
    text-decoration: none;
}

@media (max-width: 480px) {
    .section-title {
        font-size: 20px;
    }

    .section-title2 {
        font-size: 22px;
    }

    .icon {
        width: 60px;
        height: 60px;
        margin: 0 auto;
    }

    .service-title {
        font-size: 12px;
    }

    .services-container {
        display: flex;
        flex-wrap: wrap;
        gap: 0; /* Avoid large gaps that push items */
        margin: 0;
        padding: 0;
        justify-content: space-between;
    }

    .service-item {
        flex: 0 0 33.33%;
        box-sizing: border-box;
        text-align: center;
        padding: 5px;
        margin: 0;
        text-decoration: none;
    }

    .service-item img {
        max-width: 100%;
        height: auto;
    }
}

