.why-choose-section {
    background-color: #ecf2fd;
    padding-top: 80px;
    padding-bottom: 80px;
    overflow: hidden;
}

.why-choose-section .section-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #003451;
    margin-bottom: 0;
}

.steps-wrapper {
    position: relative;
    z-index: 2;
}

/* Step Cards */
.step-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 3rem 2rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    height: 100%;
}

.step-icon-wrapper {
    margin-bottom: 1.5rem;
}

/* Icon wrapper */
.step-card .icon-wrap {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    background: #faf4e9;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 56px;
}

/* Icon inside wrapper */
.step-card .icon-wrap img {
    width: 42px;
    height: 42px;
    stroke: var(--yellow);
    fill: none;
    stroke-width: 1.8;
}

.step-title {
    color: #003451;
    font-size: 1.2rem;
    line-height: 1.5;
    margin-bottom: 0;
}

/* Media Queries */
@media (max-width: 767.98px) {
    .why-choose-section .section-title {
        font-size: 1.75rem;
        text-align: center;
        margin-bottom: 1rem;
        margin-left: auto;
        margin-right: auto;
    }

    .step-card {
        padding: 2rem 2rem;
        margin-bottom: 1.5rem;
    }

    .step-title {
        font-size: 1.25rem;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .step-card {
        margin-bottom: 2rem;
    }
}
