/* Why Contact Us Section */
.why-contact-section {
    padding: 0 0;
    background-color: #ffffff;
}

.why-contact-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.why-contact-header {
    text-align: center;
    margin-bottom: 64px;
}

.why-contact-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 16px;
}

.why-contact-dot {
    width: 8px;
    height: 8px;
    background-color: #FFCC00;
    border-radius: 50%;
}

.why-contact-label-text {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 14px;
    line-height: 24px;
    text-transform: uppercase;
    color: #FFCC00;
    letter-spacing: 0.8px;
}

.why-contact-title {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 48px;
    line-height: 48px;
    text-align: center;
    margin-bottom: 16px;
}

.why-contact-title-blue {
    color: #111ABF;
}

.why-contact-title-yellow {
    color: #FFCC00;
}

.why-contact-subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 28px;
    text-align: center;
    color: #4B5563;
}

.why-contact-cards {
    display: flex;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}

.why-contact-card {
    flex: 1 1 280px;
    max-width: 280px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.why-contact-card-image {
    position: relative;
    height: 192px;
    overflow: hidden;
}

.why-contact-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.why-contact-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0) 100%);
}

.why-contact-card-icon {
    position: absolute;
    top: 16px;
    left: 16px;
    font-size: 36px;
}

.why-contact-card-content {
    padding: 24px;
}

.why-contact-card-title {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 20px;
    line-height: 28px;
    color: #111ABF;
    margin-bottom: 12px;
}

.why-contact-card-description {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #4B5563;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .why-contact-cards {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .why-contact-title {
        font-size: 36px;
        line-height: 40px;
    }
    
    .why-contact-subtitle {
        font-size: 18px;
        line-height: 24px;
    }
}

@media (max-width: 576px) {
    .why-contact-section {
        padding: 60px 0;
    }
    
    .why-contact-header {
        margin-bottom: 40px;
    }
    
    .why-contact-title {
        font-size: 32px;
        line-height: 36px;
    }
}
