.section {
    background: #fff;
}

.section-head {
    max-width: 800px;
    margin: 0 auto;
}

.section-eyebrow {
    font-size: 14px;
    font-weight: 700;
    color: #6f42c1;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #212529;
    margin: 0;
}

.why-card {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 16px;
    padding: 28px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.why-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 24px;
    margin-bottom: 20px;
}

.why-icon.blue {
    background: #e8f1ff;
    color: #0d6efd;
}

.why-icon.green {
    background: #e8f8ef;
    color: #198754;
}

.why-icon.orange {
    background: #fff3df;
    color: #fd7e14;
}

.why-title {
    font-size: 19px;
    font-weight: 700;
    color: #212529;
    margin-bottom: 12px;
}

.why-desc {
    font-size: 15px;
    line-height: 1.7;
    color: #6c757d;
    margin-bottom: 0;
}

.why-desc strong {
    color: #343a40;
}

/* Mobile */
@media (max-width: 767.98px) {

    .section-title {
        font-size: 28px;
    }

    .section-eyebrow {
        font-size: 12px;
    }

    .why-card {
        padding: 22px;
    }
}