.why-us-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f4f7ff 0%, #ecfff4 100%);
}
.why-us-card {
    background: linear-gradient(135deg, rgba(19,64,222,0.95) 0%, rgba(40,163,84,0.92) 100%);
    border-radius: 20px;
    padding: 35px 25px;
    height: 100%;
    transition: all .3s ease;
    border: 1px solid rgba(134,239,172,0.35);
    box-shadow: 0 15px 35px rgba(19,64,222,0.18);
}
.why-us-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 45px rgba(40,163,84,0.25);
    border-color: rgba(134,239,172,0.7);
}
.why-us-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255,255,255,0.18);
    color: #86efac;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}
.why-us-card h4 {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    position: relative;
}
.why-us-card h4::after {
    content: "";
    display: block;
    width: 40px;
    height: 3px;
    background: #86efac;
    margin: 12px auto 0;
    border-radius: 10px;
}
.why-us-card p {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255,255,255,0.88);
    margin: 0;
}
@media (max-width: 767px) {
    .why-us-section {
        padding: 50px 0;
    }
    .why-us-card {
        padding: 25px 20px;
    }
    .why-us-icon {
        width: 65px;
        height: 65px;
        font-size: 26px;
    }
}