/* Membership Page Styles */
.membership-sidebar {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    overflow: hidden;
}

.membership-sidebar .list-group-item {
    border: none;
    padding: 15px 20px;
    font-weight: 500;
    color: #555;
    transition: all 0.2s ease;
    border-left: 4px solid transparent;
}

.membership-sidebar .list-group-item:hover {
    background-color: #f8f9fa;
    color: #009fe8;
}

.membership-sidebar .list-group-item.active {
    background-color: #e6f6ff;
    color: #009fe8;
    border-left-color: #009fe8;
}

.membership-content {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    min-height: 400px;
}

.membership-content h2 {
    color: #009fe8;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.membership-content p {
    line-height: 1.8;
    color: #444;
}

@media (max-width: 991px) {
    .membership-sidebar {
        margin-bottom: 30px;
    }
}
