 /* Mengapa Memilih Kami  */
 .section-title small {
    color: #2ecc71;
    font-weight: 600;
    letter-spacing: 1px;
}

.section-title h2 {
    font-weight: 700;
    color: #004d40;
}

.section-title p {
    color: #6c757d;
    max-width: 700px;
    margin: auto;
}

.feature-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    height: 100%;
    opacity: 0;
    transform: translateY(40px);
}

.feature-card.show {
    opacity: 1;
    transform: translateY(0);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.icon-box {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: #e8fff6;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 22px;
    color: #20c997;
}

.feature-card h5 {
    font-weight: 700;
    color: #004d40;
}

.feature-card p {
    color: #6c757d;
    margin-bottom: 0;
}