/* Why Choose Us Section */
.why-choose-us {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1rem;
    background: #fff;
}

.section-heading-container {
    text-align: center;
    margin-bottom: 3rem;
}

.section-heading {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #333;
    text-transform: none;
    letter-spacing: normal;
    margin: 0;
}

.features-container {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.image-container {
    flex: 0 0 50%;
    position: relative;
}

/* 18:6 Aspect Ratio */
.image-wrapper {
    width: 100%;
    padding-top: 33.33%;
    background-size: cover;
    background-position: center;
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.color-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
            rgba(37,150,190,0.85) 0%, 
            rgba(37,150,190,0.6) 40%,
            rgba(37,150,190,0) 80%);
}

.feature-title {
    position: absolute;
    left: 1.5rem;
    bottom: 1.5rem;
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    text-shadow: 0 2px 6px rgba(0,0,0,0.4);
    z-index: 2;
    max-width: 80%;
    margin: 0;
}

.feature-desc {
    flex: 1;
    padding-right: 1rem;
}

.desc-heading {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.feature-desc p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #444;
    margin: 0;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .section-heading {
        font-size: 2.2rem;
    }
    .feature-item {
        gap: 1.5rem;
    }
    .feature-title {
        font-size: 1.4rem;
    }
    .desc-heading {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .section-heading {
        font-size: 2rem;
    }
    .feature-item {
        flex-direction: column;
        gap: 1rem;
    }
    .image-container {
        flex: 0 0 100%;
        width: 100%;
    }
    .feature-desc {
        padding: 0 1rem;
        text-align: center;
    }
    .desc-heading {
        margin-top: 1rem;
    }
}

@media (max-width: 576px) {
    .why-choose-us {
        padding: 2rem 1rem;
    }
    .section-heading {
        font-size: 1.8rem;
    }
    .feature-title {
        font-size: 1.3rem;
        left: 1rem;
        bottom: 1rem;
    }
    .desc-heading {
        font-size: 1.2rem;
    }
    .feature-desc p {
        font-size: 1rem;
    }
}