.who-we-are-section {
    padding: 80px 0;
    background: #fff;
}

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

.section-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 30.9px;
    color: #000;
    background: #EAEAEA;
    display: inline-block;
    padding: 8px 24px;
    border-radius: 54px;
    margin-bottom: 24px;
}

.section-main-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    font-weight: 800;
    line-height: 48px;
    color: #000;
    margin: 0 0 24px 0;
}

.section-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 32.5px;
    color: #666;
    margin: 0 auto 60px auto;
    max-width: 800px;
}

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

.pillar-card {
    display: flex;
    flex-direction: column;
    border: 1px solid #E6E6E6;
    border-radius: 12px;
    overflow: hidden;
}

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

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

.pillar-content {
    padding: 20px;
    text-align: left;
}

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

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

.section-bottom-text {
    margin-bottom: 30px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: #666;
}

.section-bottom-text p {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: #666;
    margin: 0;
}

.section-bottom-text strong {
    font-weight: 700;
    color: #000;
}

.section-bottom-text a {
    color: #508A92;
    text-decoration: none;
    font-weight: 600;
}

.section-bottom-text a:hover {
    text-decoration: underline;
}

.section-button-wrapper {
    display: flex;
    justify-content: center;
}

.section-button {
    display: inline-block;
    padding: 12px 32px;
    background: transparent;
    border: 2px solid #000;
    border-radius: 8px;
    color: #000;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.section-button:hover {
    background: #000;
    color: #fff;
}

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

@media (max-width: 768px) {
    .who-we-are-section {
        padding: 60px 0;
    }
    
    .pillars-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .section-label {
        font-size: 18px;
        line-height: 26px;
        padding: 6px 20px;
    }
    
    .section-main-heading {
        font-size: 32px;
        line-height: 40px;
    }
    
    .section-subtitle {
        font-size: 16px;
        line-height: 26px;
        margin-bottom: 40px;
    }
    
    .pillar-content {
        padding: 16px;
    }
    
    .pillar-title {
        font-size: 18px;
        line-height: 28px;
    }
    
    .pillar-description {
        font-size: 14px;
        line-height: 22px;
    }
    
    .section-bottom-text,
    .section-bottom-text p {
        font-size: 14px;
        line-height: 24px;
    }
}

