.why-section {
    background-color: #f4f8fe;
    padding: 72px 0;
}

/* Feature card */
.feature-card {
    background: var(--card-bg);
    border-radius: 14px;
    padding: 30px;
    padding-right: 90px;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--card-border);
    display: flex;
    align-items: flex-start;
    gap: 18px;
    min-height: 120px;
}

/* Icon wrapper */
.icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: var(--yellow-soft);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 56px;
}

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

.feature-card p {
    font-size: 0.95rem;
}

/* Button wrapper */
.why-section .learn-btn {
    margin-top: 42px;
}

/* Media Queries */
@media (max-width: 767.98px) {
    .icon-wrap {
        width: 48px;
        height: 48px;
        border-radius: 10px;
    }
    .icon-wrap svg {
        width: 18px;
        height: 18px;
    }
    .feature-card {
        padding: 18px;
        gap: 12px;
    }
    .why-section {
        padding: 40px 0;
    }
    .why-btn a {
        width: 100%;
    }
}
