.WhyChooseUs {
    background: #FDF5F5;
    color: #333;
    line-height: 1.6;
    padding: 80px;
    padding-left: 30px;
    padding-right: 30px;
}

/* Header section */
.WhyChooseUs-header {
    display: flex;
    justify-content:center;
    align-items: center;
    margin-bottom: 40px;
}

.WhyChooseUs-header h2 {
    color: var(--Primary-Color-primary_2, #0E357A);
    font-family: Oswald;
    font-size: 50px;
    font-style: normal;
    font-weight: 700;
    line-height: 58px;
    /* 116% */
}

.WhyChooseUs-header p {
    max-width: 477px;
    text-align: right;
    color: var(--Primary-Color-primary_2, #0E357A);
    font-family: Poppins;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    /* 144.444% */
}

/* Features grid */
.WhyChooseUs-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.WhyChooseUs-featuresThree {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
/* Feature card */
.WhyChooseUs-feature-card {
    background-color: white;
    border-radius: 8px;
    padding: 25px;
    border: 1px solid #EBEBEB;
    box-shadow: 0px 14px 20px 0px rgba(52, 60, 119, 0.10);
    height: 100%;
    transition: transform 0.3s ease;
}

.WhyChooseUs-feature-card-icon {
    width: 69.544px;
    height: 69.544px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 69.54/69.54;
    border-radius: 5px;
    background: #ECEDF4;
}

.WhyChooseUs-feature-card:hover {
    transform: translateY(-5px);
}

.WhyChooseUs-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
    color: #c93a3a;
}

.WhyChooseUs-feature-title {
    color: var(--Primary-Color-primary_2, #0E357A);
    font-family: Oswald;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px;
    /* 133.333% */
}

.WhyChooseUs-feature-text {
    color: var(--Primary-Color-primary_2, #0E357A);
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    opacity: 0.8;
}

/* Responsive styles */
@media (max-width: 1024px) {
    .WhyChooseUs-features,
    .WhyChooseUs-featuresThree {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .WhyChooseUs-header {
        flex-direction: column;
        text-align: center;
    }

    .WhyChooseUs-header p {
        text-align: center;
        margin-top: 15px;
    }
}

@media (max-width: 576px) {
    .WhyChooseUs-features,
    .WhyChooseUs-featuresThree {
        grid-template-columns: 1fr;
    }

    .WhyChooseUs-feature-card {
        padding: 20px;
    }
}