.what-we-do-section {
    padding: 80px 0;
    background: #EBF3F4;
}

.what-we-do-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

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

.service-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
}

.service-image {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-content {
    padding: 24px;
    text-align: left;
}

.service-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 32px;
    color: #000;
    margin: 0 0 12px 0;
}

.service-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #666;
    margin: 0;
}

@media (max-width: 968px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .what-we-do-section .section-main-heading {
        font-size: 36px;
        line-height: 44px;
    }
    
    .what-we-do-section .section-subtitle {
        font-size: 18px;
        line-height: 28px;
    }
}

@media (max-width: 768px) {
    .what-we-do-section {
        padding: 60px 0;
    }
    
    .what-we-do-section .section-label {
        font-size: 18px;
        line-height: 26px;
        padding: 6px 20px;
    }
    
    .what-we-do-section .section-main-heading {
        font-size: 32px;
        line-height: 40px;
    }
    
    .what-we-do-section .section-subtitle {
        font-size: 16px;
        line-height: 26px;
        margin-bottom: 40px;
    }
    
    .service-content {
        padding: 20px;
    }
    
    .service-title {
        font-size: 18px;
        line-height: 28px;
    }
    
    .service-description {
        font-size: 14px;
        line-height: 22px;
    }
}

