.membership-card {
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 25px 20px;
    background: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.membership-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
}

/* IMAGE WRAPPER (VERY IMPORTANT FOR ALIGNMENT) */
.membership-img {
    width: 300px;
    height: 250px;
    object-fit: contain; /* keeps full logo visible */
    object-position: center;
    margin: 0 auto 20px auto;
    display: block;
}

/* TEXT */
.membership-card p {
    font-size: 0.95rem;
    line-height: 1.4;
    min-height: 50px; /* Keeps equal spacing for long/short names */
}
