.membership-cards {
    width: 100%;
    padding: 60px 0;
}

/* Background Color Options */
.membership-cards.bg-white {
    background: #FFFFFF;
}

.membership-cards.bg-light-blue {
    background: #EBF5FF;
}

.membership-cards.bg-light-gray {
    background: #F5F5F5;
}

.membership-cards__grid {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    gap: 30px;
}

.membership-cards__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
    border: 10px solid #656565;
    background: #26296E;
    width: 100%;
    padding: 50px 20px;
}

.membership-cards__title {
    color: #FFF;
    text-align: center;
    font-family: "IBM Plex Sans";
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.2;
    margin-top: 0;
    margin-bottom: 40px;
}

.membership-cards__price {
    color: #FFF;
    text-align: center;
    font-family: "IBM Plex Sans";
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    margin-top: 0;
    margin-bottom: 10px;
}

.membership-cards__term {
    color: #FFF;
    text-align: center;
    font-family: "IBM Plex Sans";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    margin-top: 0;
    margin-bottom: 40px;
}

.membership-cards__features {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin-top: 0;
    margin-bottom: 40px;
    padding: 0;
}

.membership-cards__feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #FFF;
    text-align: center;
    font-family: "IBM Plex Sans";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 44px;
    margin: 0;
}

@media (min-width: 768px) {
    .membership-cards__card {
        width: calc(50% - 40px);
    }
}

@media (min-width: 1200px) {
    .membership-cards {
        padding: 100px 0;
    }

    .membership-cards__card {
        width: calc(33.333% - 40px);
    }

    .membership-cards__card.single-card {
        width: 100%;
        max-width: 778px;
        padding: 50px 200px;
    }

    .membership-cards__title {
        font-size: 46px;
        line-height: 55px;
    }
}