.why-choose-section {
    background: #f8faf7;
    border: 1px solid #e5ebde;
    border-radius: 16px;
    padding: 38px 16px 22px;
    font-family: Arial, sans-serif;
}

.why-choose-head h6 {
    color: #2f8a55;
    font-size: 14px;
    letter-spacing: 0.08em;
    font-weight: 700;
    margin-bottom: 8px;
}

.why-choose-head h2 {
    color: #1f2937;
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 12px;
    font-weight: 700;
}

.why-choose-head h2 span {
    color: #84c225;
}

.why-choose-head p {
    max-width: 860px;
    margin: 0 auto;
    color: #4b5563;
    font-size: 18px;
    line-height: 1.6;
}

.why-choose-grid {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.why-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 28px;
    min-height: 250px;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
}

.why-icon {
    width: 58px;
    height: 58px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.why-icon i {
    color: #fff;
    font-size: 26px;
}

.why-icon.green {
    background: #2f8a55;
}

.why-icon.orange {
    background: #f3a109;
}

.why-icon.light-green {
    background: #78b82b;
}

.why-card h3 {
    color: #1f2937;
    font-size: 22px;
    line-height: 1.2;
    margin-bottom: 10px;
    font-weight: 700;
}

.why-card p {
    color: #4b5563;
    font-size: 17px;
    line-height: 1.55;
    margin: 0;
}

.why-stats {
    margin-top: 26px;
    background: linear-gradient(90deg, #9bd440 0%, #78b82b 100%);
    border-radius: 20px;
    padding: 28px 24px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.stat-item {
    text-align: center;
}

.stat-item h4 {
    color: #103007;
    font-size: 55px;
    margin: 0;
    font-weight: 800;
}

.stat-item span {
    color: #1e3a12;
    font-size: 16px;
    font-weight: 500;
}

@media (max-width: 1200px) {
    .why-choose-head h2 {
        font-size: 44px;
    }

    .why-choose-head p {
        font-size: 19px;
    }

    .why-card h3 {
        font-size: 20px;
    }

    .why-card p {
        font-size: 16px;
    }

    .stat-item h4 {
        font-size: 42px;
    }

    .stat-item span {
        font-size: 17px;
    }
}

@media (max-width: 991px) {
    .why-choose-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .why-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 576px) {
    .why-choose-section {
        border-radius: 12px;
        padding: 28px 12px 16px;
    }

    .why-choose-head h6 {
        font-size: 12px;
    }

    .why-choose-head h2 {
        font-size: 30px;
    }

    .why-choose-head p {
        font-size: 15px;
        line-height: 1.5;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .why-card {
        border-radius: 14px;
        padding: 20px;
        min-height: auto;
    }

    .why-icon {
        width: 50px;
        height: 50px;
    }

    .why-icon i {
        font-size: 22px;
    }

    .why-card h3 {
        font-size: 25px;
    }

    .why-card p {
        font-size: 15px;
    }

    .why-stats {
        border-radius: 14px;
        padding: 18px 10px;
    }

    .stat-item h4 {
        font-size: 30px;
    }

    .stat-item span {
        font-size: 13px;
    }
}
