/* Membership page specific styles */
.membership-hero {
    padding: 60px 0;
    background: #ffffff;
}

.membership-hero h2 {
    text-align: center;
    color: #1e3a8a;
    /* blue */
    font-size: 32px;
    margin-bottom: 40px;
}

.card-box {
    max-width: 600px;
    margin: auto;
    background: #fff;
    padding: 20px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.card-box h3 {
    color: #1e3a8a;
    margin-bottom: 10px;
}

.card-box ul {
    list-style: disc;
    padding-left: 20px;
    color: #475569;
}

.membership-benefits {
    padding: 60px 0;
    background: #f5f9fe;
}

.membership-benefits h3 {
    color: #1e3a8a;
    margin-bottom: 40px;
    font-size: 26px;
    position: relative;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.benefit-card {
    background: #e5f0ff;
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-card .icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.benefit-card h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #1e3a8a;
}

.benefit-card p {
    font-size: 14px;
    color: #475569;
    line-height: 1.6;
}