/* ── Why Join AHS ── */
.why-join-section {
    padding: 70px 20px;
    background-color: #f9fbfd;
    text-align: center;
}

.why-join-title {
    font-size: 2rem;
    font-weight: 800;
    color: #0f2027;
    margin-bottom: 50px;
    font-family: Georgia, 'Times New Roman', Times, serif;
}

.why-join-card {
    border: 1.5px solid #cce0f5;
    border-radius: 14px;
    padding: 40px 28px 36px;
    background-color: #ffffff;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.why-join-card:hover {
    box-shadow: 0 8px 28px rgba(26, 115, 232, 0.15);
    transform: translateY(-4px);
}

.why-join-icon {
    margin-bottom: 28px;
}

.why-join-icon img {
    width: 72px;
    height: 72px;
}

.why-join-text {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.8;
    text-align: center;
    margin: 0;
    font-family: Georgia, 'Times New Roman', Times, serif;
}

/* Why Join – Mobile */
@media (max-width: 768px) {
    .why-join-section {
        padding: 40px 16px;
    }

    .why-join-title {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }
}
