.moneylife-group-page-banner {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.moneylife-group-page .content {
  /*  padding: 75px 0;*/
    min-height: 345px;
}

.moneylife-group-center {
    text-align: center;
}

.moneylife-group-cards {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.moneylife-group-card {
    flex: 0 0 31%;
    max-width: 28%;
    text-align: center;
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #e5e5e5;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.moneylife-group-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.moneylife-group-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
    font-size: 22px;
    border-bottom: 1px solid #ccc;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    position: relative;
    color: #1e2a78;
    min-height: 44px;
}

.moneylife-group-heading-logo {
    flex-shrink: 0;
    width: 35px;
    height: 35px;
    object-fit: contain;
}

.moneylife-group-heading-text {
    line-height: 1.25;
}

.moneylife-group-card div {
    line-height: 1.6;
    color: #444;
    font-size: 15px;
}

@media (max-width: 768px) {
    .moneylife-group-card {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .moneylife-group-cards {
        gap: 40px;
    }
}