/* ======== REASON SECTION - BASE STYLES ======== */
.reason, .why-partner {
    padding: 60px 0;
    background: #f9fafc;
}

.reason h2, .why-partner h2 {
    font-size: 34px;
    color: #2B3A55;
    text-align: center;
    font-weight: 700;
    margin-bottom: 40px;
}

.benefits, .partner-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

/* Base card styles */
.benefits .benefit, .partner-benefit {
    padding: 25px;
    border-radius: 16px;
    max-width: 300px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    margin-bottom: 20px;
}

.benefits .benefit h3, .partner-benefit h3 {
    font-size: 22px;
    color: #2B3A55;
    margin-bottom: 15px;
    text-align: center;
}

.benefits .benefit p, .partner-benefit p {
    text-align: left;
    font-size: 15px;
    line-height: 1.6;
    color: #333;
    max-width: 250px;
    margin: 0 auto;
}

/* ======== COLOR VARIATIONS ======== */

/* Health Screening - Blue */
.reason-health-screening .benefit {
    background: #E8F4FA;
}

/* Mobile Service - Green */
.reason-mobile-service .benefit {
    background: #E8F5E9;
}

/* Corporate Partnership - Purple/Lavender */
.why-partner .partner-benefit {
    background: #F3E5F5;
}

/* Optional: Add hover effect for interactivity */
.benefits .benefit:hover, .partner-benefit:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    transition: all 0.3s ease;
}