<style>
    /* SECTION */
    #members {
        background: #f7f9fc;
        padding: 60px 0;
    }

    /* HEADER */
    .section-header h2 {
        font-family: 'Russo One', sans-serif;
        color: #175885;
        font-size: 22px;
        margin-bottom: 6px;
    }

    .section-header .sub-title {
        font-size: 14px;
        color: #666;
        letter-spacing: 1px;
    }

    .section-header hr {
        width: 90px;
        border: 1px solid #175885;
        margin: 20px auto 40px;
    }

    /* CARD */
    .membership-card {
        background: #ffffff;
        border-radius: 6px;
        border-top: 4px solid #175885;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
        margin-bottom: 30px;
        transition: all .3s ease;
        min-height: 220px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .membership-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    }

    /* CONTENT */
    .membership-card .card-body {
        padding: 25px 20px;
    }

    .membership-card p {
        font-size: 14px;
        line-height: 1.6;
        color: #444;
        margin: 0;
    }

    /* FOOTER */
    .membership-card .card-footer {
        border-top: 1px solid #eee;
        text-align: center;
        padding: 12px 0;
    }

    .membership-card .card-footer a {
        font-size: 12px;
        letter-spacing: 1px;
        color: #175885;
        font-weight: 600;
        text-decoration: none;
    }

    .membership-card .card-footer a:hover {
        color: #0d3c5f;
    }

    /* BUTTON */
    .membership-btn {
        margin-top: 20px;
        padding: 10px 30px;
        background: #175885;
        border: none;
        letter-spacing: 1px;
        text-transform: uppercase;
    }

    .membership-btn:hover {
        background: #0d3c5f;
    }

    /* MOBILE */
    @media(max-width: 768px) {
        .membership-card {
            min-height: auto;
        }
    }
</style>